django-blog-for-html-over-t.../django-launcher.sh

12 lines
288 B
Bash
Raw Permalink Normal View History

2022-05-15 20:58:36 +02:00
#!/bin/sh
# Collect static files
python3 manage.py collectstatic --noinput
# Apply database migrations
python3 manage.py migrate
# Start server with debug mode
python3 manage.py runserver 0.0.0.0:8000
# Start server with production mode
#daphne -b 0.0.0.0 -p 8000 blog.asgi:application