File size: 247 Bytes
68a4a06 0026db8 68a4a06 ab6b332 0026db8 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
#!/bin/bash
# start nginx
service nginx start
# run config script
python config.py
# start the processes
python api.py & echo $!> api.pid
python app.py # blocking
# when unblocked, kill other processes and clean up
pkill -F api.pid
rm api.pid
|