Add start/import scripts
This commit is contained in:
parent
c6f711030a
commit
9c5afac91c
2
import.sh
Executable file
2
import.sh
Executable file
@ -0,0 +1,2 @@
|
|||||||
|
#!/bin/sh -ev
|
||||||
|
python -m flatisfy import --config config.json --new-only -v "$@"
|
18
start.sh
Executable file
18
start.sh
Executable file
@ -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
|
Loading…
Reference in New Issue
Block a user