Migrate Django server to guicorn

This commit is contained in:
Sean Morley
2024-10-21 19:59:01 -04:00
parent 075257c846
commit 874a384477
3 changed files with 5 additions and 4 deletions

View File

@@ -36,5 +36,5 @@ fi
# Sync the countries and world travel regions
python manage.py download-countries
# Start Django server
python manage.py runserver 0.0.0.0:8000
# Start gunicorn
gunicorn main.wsgi:application --bind 0.0.0.0:8000