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 1/3] 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 a98ceb3dec..e5772a3bf7 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 From 12ad6af8c3c449d35a356c679080b5b9ffeae787 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arne=20H=C3=BCffmeier?= Date: Thu, 1 Sep 2022 13:45:49 +0200 Subject: [PATCH 2/3] fix path --- docs/install/manual.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/install/manual.md b/docs/install/manual.md index e5772a3bf7..5e058eb6db 100644 --- a/docs/install/manual.md +++ b/docs/install/manual.md @@ -211,7 +211,7 @@ 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 +bin/pip3 install -r requirements.txt # migrate database bin/python3 manage.py migrate # collect static files From e5b11a34f6766afc8afc1bc61b36b9b1027f7c8a Mon Sep 17 00:00:00 2001 From: vabene1111 Date: Mon, 31 Oct 2022 19:49:24 +0100 Subject: [PATCH 3/3] Update manual.md --- docs/install/manual.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/install/manual.md b/docs/install/manual.md index 5e058eb6db..ddaaa1d588 100644 --- a/docs/install/manual.md +++ b/docs/install/manual.md @@ -215,7 +215,7 @@ 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. +# if the output is not "0 static files copied" you might want to run the commands again to make sure everythig is collected bin/python3 manage.py collectstatic --no-input bin/python3 manage.py collectstatic_js_reverse # change to frontend directory