solveai / start.sh
Azeez98's picture
Update start.sh
4611af7 verified
raw
history blame contribute delete
212 Bytes
#!/bin/bash
# Start Nginx on port 8080 (Hugging Face's allowed port)
sudo /usr/sbin/nginx -c /etc/nginx/nginx.conf -g "daemon off;" &
# Start Gunicorn
gunicorn django_project.wsgi:application --bind 0.0.0.0:7860