mirror of
https://github.com/tanrax/SSE-Fake.git
synced 2024-11-10 01:55:41 +01:00
12 lines
292 B
Bash
12 lines
292 B
Bash
#!/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 sse_fake.asgi:application |