mirror of
https://github.com/gesellix/Bose-SoundTouch.git
synced 2026-08-18 16:46:17 +00:00
35 lines
891 B
Markdown
35 lines
891 B
Markdown
# Raspberry Pi installers
|
|
|
|
Full documentation — installation, configuration, service management, updates,
|
|
and removal for both `soundtouch-service` and `soundtouch-web` — lives in the
|
|
project docs:
|
|
|
|
**[docs/content/docs/guides/RASPBERRY-PI.md](../../docs/content/docs/guides/RASPBERRY-PI.md)**
|
|
|
|
---
|
|
|
|
## Quick start
|
|
|
|
**soundtouch-service** (cloud-replacement relay):
|
|
|
|
```bash
|
|
curl -fsSL -o install.sh \
|
|
https://raw.githubusercontent.com/gesellix/Bose-SoundTouch/main/scripts/raspberry-pi/install.sh
|
|
sudo bash install.sh
|
|
```
|
|
|
|
**soundtouch-web** (browser control panel):
|
|
|
|
```bash
|
|
curl -fsSL -o install-web.sh \
|
|
https://raw.githubusercontent.com/gesellix/Bose-SoundTouch/main/scripts/raspberry-pi/install-web.sh
|
|
sudo bash install-web.sh
|
|
```
|
|
|
|
Pass a version tag as the first argument to pin a specific release:
|
|
|
|
```bash
|
|
sudo bash install.sh v0.104.1
|
|
sudo bash install-web.sh v0.104.1
|
|
```
|