9 lines
180 B
Bash
9 lines
180 B
Bash
#!/usr/bin/env bash
|
|
|
|
cd "${0%/*}"
|
|
|
|
source ./venv/bin/activate
|
|
python ./manage.py collectstatic --noinput
|
|
python ./manage.py compress
|
|
python ./manage.py migrate --noinput
|
|
deactivate |