mirror of
https://github.com/liamcottle/reticulum-meshchat.git
synced 2026-04-27 16:10:32 +00:00
Merge f101a253ae into b36dcddfcd
This commit is contained in:
commit
8bb7512151
1 changed files with 57 additions and 1 deletions
|
|
@ -89,4 +89,60 @@ sudo systemctl status reticulum-meshchat.service
|
|||
|
||||
You should now be able to access MeshChat via your Pi's IP address.
|
||||
|
||||
> Note: Don't forget to include the default port `8000`
|
||||
> Note: Don't forget to include the default port `8000`
|
||||
|
||||
|
||||
---
|
||||
|
||||
### STEP-BY-STEP UPGRADE GUIDE
|
||||
To upgrade your **Meshchat** installation on Raspberry Pi follow these steps:
|
||||
|
||||
#### 1. **Stop Meshchat (if running as a service)**
|
||||
|
||||
If you set it up with `systemd`, stop the service:
|
||||
|
||||
```bash
|
||||
sudo systemctl stop reticulum-meshchat
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
#### ⬇ 2. **Navigate to the Meshchat Directory**
|
||||
|
||||
Open a console and go to the folder where Meshchat is installed. Common paths:
|
||||
|
||||
```bash
|
||||
cd ~/reticulum-meshchat
|
||||
```
|
||||
|
||||
or if you cloned it somewhere else, adjust the path accordingly.
|
||||
|
||||
---
|
||||
|
||||
#### 3. **Pull the Latest Code from GitHub**
|
||||
|
||||
Ensure you have no local changes, then update:
|
||||
|
||||
```bash
|
||||
git pull origin master
|
||||
```
|
||||
|
||||
|
||||
---
|
||||
|
||||
#### 4. **Update Dependencies (if needed)**
|
||||
|
||||
Check if the new version requires updated dependencies:
|
||||
|
||||
```bash
|
||||
pip3 install -r requirements.txt --upgrade --break-system-packages
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
#### 5. **Restart Meshchat**
|
||||
|
||||
|
||||
```bash
|
||||
sudo systemctl start reticulum-meshchat
|
||||
```
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue