15 lines
238 B
Bash
15 lines
238 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -o nounset
|
||
|
set -o xtrace
|
||
|
set -o errexit
|
||
|
set -o pipefail
|
||
|
|
||
|
echo "Compiling messages..."
|
||
|
./manage.py compilemessages >/dev/null
|
||
|
|
||
|
echo "Migrating..."
|
||
|
./manage.py migrate --no-input
|
||
|
|
||
|
./manage.py runserver 0.0.0.0:8000
|