8 lines
157 B
Bash
Executable file
8 lines
157 B
Bash
Executable file
#!/bin/bash
|
|
|
|
echo "Stopping the server..."
|
|
pkill gunicorn
|
|
|
|
echo "Starting the server..."
|
|
cd /home/vagrant/server
|
|
gunicorn --bind 0.0.0.0:8000 -w 1 "app:app"
|