Created
April 20, 2022 07:48
-
-
Save alexandrtretyakov/96a45391b3292e47aa38ae36f20e2173 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Переходим в директорию с проектом | |
cd test/ | |
# Загружаем изменения из гита | |
git pull | |
# Создаем и применяем миграции | |
venv/bin/python manage.py makemigrations | |
venv/bin/python manage.py migrate | |
# Собираем статику | |
venv/bin/python manage.py collectstatic --noinput | |
# Перезапускаем gunicorn и nginx | |
systemctl restart gunicorn | |
systemctl reload nginx |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment