From b9e5c40d05fd7be78f264aca7899f332796b336e Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Fri, 14 Feb 2020 00:21:12 +0200 Subject: [PATCH] Updated Raspberry Pi (markdown) --- Raspberry-Pi.md | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git a/Raspberry-Pi.md b/Raspberry-Pi.md index d8e40cb..b99f80e 100644 --- a/Raspberry-Pi.md +++ b/Raspberry-Pi.md @@ -130,7 +130,7 @@ Then unzip file: unzip wekan*.zip ``` -### a) Running Wekan as service +### 6. Running Wekan as service If you would like to run node as non-root user, and still have node at port 80, you could add capability to it, by first looking where node binary is: ``` @@ -207,6 +207,30 @@ It is much more recommended to use [email sending service like AWS SES or some o If your router has ports forwarded to your RasPi (in virtual server settings at http://192.168.0.1), then you could also [install nginx and Let's Encrypt SSL](https://github.com/wekan/wekan-bash-install-autoupgrade/blob/master/install.sh) in front of Wekan. +## 7. Updating Wekan +Stop Wekan and move old stuff away: +``` +sudo systemctl stop wekan +mkdir old +mv wekan*.zip old/ +mv bundle old/ +``` +Download new Wekan version: +``` +elinks https://releases.wekan.team/raspi3/ +``` +There with keyboard arrow keys go move to top of newest `wekan-3.xx-arm64.zip` and press Enter to download. + +Also check README.md about what Node version newest Wekan uses. + +In elinks press `q` to exit elinks + +Unzip and start Wekan: +``` +unzip wekan*.zip +sudo systemctl start wekan +``` + *** # STOP HERE. OLD NOT NEEDED INFO BELOW.