Azeez98 commited on
Commit
d7e0ba9
·
verified ·
1 Parent(s): 67f9226

Create start.sh

Browse files
Files changed (1) hide show
  1. start.sh +7 -0
start.sh ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ #!/bin/bash
2
+
3
+ # Start Gunicorn in the background
4
+ gunicorn myproject.wsgi:application --bind 0.0.0.0:8000 &
5
+
6
+ # Start NGINX in foreground
7
+ nginx -g "daemon off;"