Added the "--no-input" to the collectstatic lines

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

View File

@ -123,7 +123,7 @@ Things to edit:
Execute `export $(cat /var/www/recipes/.env |grep "^[^#]" | xargs)` to load variables from `/var/www/recipes/.env`
Execute `./bin/python3 manage.py migrate`
Execute `bin/python3 manage.py migrate`
and revert superuser from postgres:
@ -132,7 +132,7 @@ sudo -u postgres psql` and `ALTER USER djangouser WITH NOSUPERUSER;
exit
```
Generate static files: `./bin/python3 manage.py collectstatic` and `./bin/python3 manage.py collectstatic_js_reverse` and remember the folder where files have been copied.
Generate static files: `bin/python3 manage.py collectstatic --no-input` and `bin/python3 manage.py collectstatic_js_reverse` and remember the folder where files have been copied.
## Setup web services
@ -213,7 +213,7 @@ export $(cat /var/www/recipes/.env |grep "^[^#]" | xargs)
# migrate database
bin/python3.9 manage.py migrate
# collect static files
bin/python3.9 manage.py collectstatic
bin/python3.9 manage.py collectstatic --no-input
bin/python3.9 manage.py collectstatic_js_reverse
# change to frontend directory
cd vue