- #!/bin/bash
- cd $(dirname $0)
- git checkout .
- git pull
- source ./venv/bin/activate
- pip install --disable-pip-version-check -r requirements.txt --no-cache
- ./manage.py collectstatic --noinput
- ./manage.py makemigrations
- ./manage.py migrate
- touch ./${PWD##*/}/wsgi.py
- #./manage.py compilemessages -l de
|