solveai / start.sh
Azeez98's picture
Update start.sh
988e9c2 verified
raw
history blame
163 Bytes
#!/bin/bash
# Start Gunicorn in the background
gunicorn django_project.wsgi:application --bind 0.0.0.0:8000 &
# Start NGINX in foreground
nginx -g "daemon off;"