Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Geek7
/
flk
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
14e8a28
flk
/
start_server.sh
Geek7
Create start_server.sh
1f3612d
verified
5 months ago
raw
Copy download link
history
blame
167 Bytes
#!/bin/bash
# Start the Gunicorn server in the background
nohup
gunicorn -w 4 -b 0.0.0.0:7860 myapp:myapp > gunicorn_output.log 2>&1 &
echo
"Gunicorn server started."