mirror of
https://github.com/eduardogsilva/routerfleet.git
synced 2025-06-20 17:15:39 +02:00
10 lines
201 B
Bash
10 lines
201 B
Bash
|
#!/bin/bash
|
||
|
set -e
|
||
|
|
||
|
# Set up the environment
|
||
|
shopt -s nullglob
|
||
|
|
||
|
# Django startup
|
||
|
python manage.py migrate --noinput
|
||
|
python manage.py collectstatic --noinput
|
||
|
exec python manage.py runserver 0.0.0.0:8001
|