django-template/django-launcher.sh

18 lines
425 B
Bash
Raw Permalink Normal View History

2021-04-01 09:48:35 +02:00
#!/bin/sh
# Collect static files
echo "Collect static files"
python3 manage.py collectstatic --noinput
# Apply database migrations
echo "Apply database migrations"
python3 manage.py makemigrations
python3 manage.py migrate
# Start server
echo "Starting server"
2021-10-21 15:02:59 +02:00
## With WebSockets
python3 manage.py runserver 0.0.0.0:8000
#echo "*****Start server with production mode*****"
#daphne -b 0.0.0.0 -p 8000 core.asgi:application