Add update instructions to Pi README
Documents easy 3-command update process for existing installations. Most updates just need git pull + systemctl restart since we use editable pip installs. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -49,6 +49,25 @@ If using a pre-built image from GitHub Releases:
|
||||
|
||||
> **Security note**: Change the default password after setup with `passwd`
|
||||
|
||||
## Updating an Existing Installation
|
||||
|
||||
To update to the latest version:
|
||||
|
||||
```bash
|
||||
cd /opt/stegasoo
|
||||
git pull origin main
|
||||
sudo systemctl restart stegasoo
|
||||
```
|
||||
|
||||
That's it - the editable install means Python uses the source directly.
|
||||
|
||||
**If dependencies changed** (check release notes), also run:
|
||||
```bash
|
||||
source venv/bin/activate
|
||||
pip install -e ".[web]"
|
||||
sudo systemctl restart stegasoo
|
||||
```
|
||||
|
||||
## After Installation
|
||||
|
||||
### Start the Service
|
||||
|
||||
Reference in New Issue
Block a user