tjdests/deploy.sh
Krishnan Shankar d52e0f77f3
feat: make setup easier (#225)
* feat: add run.sh and deploy.sh scripts for Director

* feat: add prod defaults to secret.sample.py
2024-02-09 22:44:19 -06:00

9 lines
205 B
Bash
Executable File

#!/bin/sh
cd /site/public
git pull
TMPDIR=/site/tmp pipenv sync
pipenv run ./manage.py migrate
pipenv run ./manage.py collectstatic --no-input
echo "Deploy complete. Restart the site process to wrap up."