added a Gunicorn start script

This commit is contained in:
Kristjan Komlosi
2019-11-09 14:55:46 +01:00
parent 4e7f7344f2
commit 62b5080d43
+4
View File
@@ -0,0 +1,4 @@
#!/bin/bash
# run.sh - run the backend server
sudo gunicorn app:app -b 0.0.0.0:5000 &
disown