flk / start_server.sh
Geek7's picture
Create start_server.sh
1f3612d verified
raw
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."