10 lines
197 B
Bash
10 lines
197 B
Bash
|
|
cd /access_controller/
|
|
|
|
if [ ! -f "/access_controller/db/zd_db.sqlite3" ]; then
|
|
python manage.py migrate
|
|
fi
|
|
|
|
python manage.py collectstatic --noinput
|
|
python manage.py runserver 0.0.0.0:8000
|