2015-12-21 01:04:00 -06:00
|
|
|
#!/bin/bash
|
|
|
|
|
2015-12-21 16:41:55 -05:00
|
|
|
echo "Stopping the server..."
|
|
|
|
pkill gunicorn
|
|
|
|
|
|
|
|
echo "Starting the server..."
|
2015-12-21 17:37:08 -05:00
|
|
|
cd /home/vagrant/server
|
2015-12-21 16:41:55 -05:00
|
|
|
gunicorn --bind 0.0.0.0:8000 -w 1 "app:app"
|