Create runserver.sh

Nice script to run the server.
Migrates before hand.
Runs on 0.0.0.0:8000 with the --noreload argument.
This commit is contained in:
Corban-Lee Jones 2024-01-18 12:15:42 +00:00
parent 6df16f054b
commit 8d4050ce8f

5
scripts/runserver.sh Executable file
View File

@ -0,0 +1,5 @@
echo migrating
python manage.py migrate
echo running without reload
python manage.py runserver 0.0.0.0:8000 --noreload