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
|
2022-07-29 10:59:09 +02:00
|
|
|
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
|