mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-01-11 20:00:26 +01:00
11 lines
208 B
Bash
11 lines
208 B
Bash
#!/bin/bash
|
|
|
|
set -o errexit
|
|
set -o pipefail
|
|
set -o nounset
|
|
|
|
python manage.py migrate
|
|
python manage.py loaddata ./fixtures/*.json
|
|
#python manage.py compilemessages
|
|
exec python manage.py runserver 0.0.0.0:8000
|