7 lines
135 B
Bash
Executable File
7 lines
135 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -o errexit
|
|
|
|
pip install -r requirements.txt
|
|
python manage.py collectstatic --no-input
|
|
python manage.py migrate
|