removed python3.9 from update (python3 is enough)

This commit is contained in:
nicedevil007 2022-06-18 23:02:03 +02:00 committed by GitHub
parent 3de6f6faf8
commit fff5c2387b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -211,10 +211,10 @@ git pull
# load envirtonment variables
export $(cat /var/www/recipes/.env |grep "^[^#]" | xargs)
# migrate database
bin/python3.9 manage.py migrate
bin/python3 manage.py migrate
# collect static files
bin/python3.9 manage.py collectstatic --no-input
bin/python3.9 manage.py collectstatic_js_reverse
bin/python3 manage.py collectstatic --no-input
bin/python3 manage.py collectstatic_js_reverse
# change to frontend directory
cd vue
# install and build frontend