mirror of
https://github.com/etnguyen03/tjdests.git
synced 2025-04-04 03:30:16 -04:00
* feat: add run.sh and deploy.sh scripts for Director * feat: add prod defaults to secret.sample.py
9 lines
205 B
Bash
Executable File
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."
|