mirror of
https://github.com/openresty/openresty
synced 2024-11-14 08:45:50 +01:00
13 lines
331 B
Bash
13 lines
331 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
mysql -h localhost -p -u monty test < misc/mysql/init-db.sql
|
||
|
|
||
|
../../util/import-model.pl --reset --user monty \
|
||
|
--password some_pass --server localhost \
|
||
|
--model posts Post.json
|
||
|
|
||
|
../../util/import-model.pl --reset --user monty \
|
||
|
--password some_pass --server localhost \
|
||
|
--model comments Comment.json
|
||
|
|