Add start/import scripts

このコミットが含まれているのは:
Gautier P 2021-01-21 10:36:44 +01:00
コミット 9c5afac91c
2個のファイルの変更20行の追加0行の削除

2
import.sh 実行可能ファイル
ファイルの表示

@ -0,0 +1,2 @@
#!/bin/sh -ev
python -m flatisfy import --config config.json --new-only -v "$@"

18
start.sh 実行可能ファイル
ファイルの表示

@ -0,0 +1,18 @@
#!/bin/sh -ev
function clean_up {
# Perform program exit housekeeping
kill $SERVE_PID $YARN_PID
exit
}
python -m flatisfy serve --config config.json &
SERVE_PID=$!
yarn watch:dev &
YARN_PID=$!
trap clean_up SIGHUP SIGINT SIGTERM
wait $SERVE_PID $YARN_PID