From cf24e1014a778e57a3f8cbb7bf476fafad9ff90e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arne=20H=C3=BCffmeier?= Date: Thu, 1 Sep 2022 13:38:47 +0200 Subject: [PATCH] add two infos --- docs/install/manual.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/install/manual.md b/docs/install/manual.md index a98ceb3d..e5772a3b 100644 --- a/docs/install/manual.md +++ b/docs/install/manual.md @@ -210,9 +210,12 @@ cd /var/www/recipes git pull # load envirtonment variables export $(cat /var/www/recipes/.env |grep "^[^#]" | xargs) +#install project requirements +/var/www/recipes/bin/pip3 install -r requirements.txt # migrate database bin/python3 manage.py migrate # collect static files +# To prevent later errors, it is advisable to perform these steps more frequently until the output "0 static files copied" appears. bin/python3 manage.py collectstatic --no-input bin/python3 manage.py collectstatic_js_reverse # change to frontend directory