easyctf-2017/deploy

9 lines
143 B
Plaintext
Raw Normal View History

2015-12-21 07:04:00 +00:00
#!/bin/bash
2015-12-21 21:41:55 +00:00
echo "Stopping the server..."
pkill gunicorn
echo "Starting the server..."
cd server
gunicorn --bind 0.0.0.0:8000 -w 1 "app:app"