easyctf-2017/deploy
2015-12-21 16:41:55 -05:00

9 lines
143 B
Bash
Executable file

#!/bin/bash
echo "Stopping the server..."
pkill gunicorn
echo "Starting the server..."
cd server
gunicorn --bind 0.0.0.0:8000 -w 1 "app:app"