initial commit

This commit is contained in:
straitz 2025-08-15 00:46:18 +09:00
commit c6961c03c3
33 changed files with 1782 additions and 0 deletions

4
entrypoint.sh Normal file
View file

@ -0,0 +1,4 @@
#!/usr/bin/env bash
python manage.py collectstatic --noinput
python manage.py migrate --noinput
python -m daphne stratoflights.asgi:application -b 0.0.0.0 -p 8000