Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Azeez98
/
solveai
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
Azeez98
commited on
10 days ago
Commit
d7e0ba9
·
verified
·
1 Parent(s):
67f9226
Create start.sh
Browse files
Files changed (1)
hide
show
start.sh
+7
-0
start.sh
ADDED
Viewed
@@ -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;"