Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b995ade

Browse files
committed
docs: update user guide for multi-arch Docker and RuView repo rename
- Update GitHub URLs from ruvnet/wifi-densepose to ruvnet/RuView - Update git clone directory references to RuView - Note multi-architecture support (amd64 + arm64) for Docker image - Add troubleshooting entry for macOS arm64 manifest error Fixes ruvnet#136 Co-Authored-By: claude-flow <[email protected]>
1 parent 6fea56c commit b995ade

1 file changed

Lines changed: 26 additions & 12 deletions

File tree

docs/user-guide.md

Lines changed: 26 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -71,13 +71,13 @@ The fastest path. No toolchain installation needed.
7171
docker pull ruvnet/wifi-densepose:latest
7272
```
7373

74-
Image size: ~132 MB. Contains the Rust sensing server, Three.js UI, and all signal processing.
74+
Multi-architecture image (amd64 + arm64). Works on Intel/AMD and Apple Silicon Macs. Contains the Rust sensing server, Three.js UI, and all signal processing.
7575

7676
### From Source (Rust)
7777

7878
```bash
79-
git clone https://github.com/ruvnet/wifi-densepose.git
80-
cd wifi-densepose/rust-port/wifi-densepose-rs
79+
git clone https://github.com/ruvnet/RuView.git
80+
cd RuView/rust-port/wifi-densepose-rs
8181

8282
# Build
8383
cargo build --release
@@ -120,8 +120,8 @@ See the full crate list and dependency order in [CLAUDE.md](../CLAUDE.md#crate-p
120120
### From Source (Python)
121121

122122
```bash
123-
git clone https://github.com/ruvnet/wifi-densepose.git
124-
cd wifi-densepose
123+
git clone https://github.com/ruvnet/RuView.git
124+
cd RuView
125125

126126
pip install -r requirements.txt
127127
pip install -e .
@@ -137,8 +137,8 @@ pip install wifi-densepose[all] # All optional deps
137137
An interactive installer that detects your hardware and recommends a profile:
138138

139139
```bash
140-
git clone https://github.com/ruvnet/wifi-densepose.git
141-
cd wifi-densepose
140+
git clone https://github.com/ruvnet/RuView.git
141+
cd RuView
142142
./install.sh
143143
```
144144

@@ -224,7 +224,7 @@ Uses `netsh wlan` to capture RSSI from nearby access points. No special hardware
224224
docker run --network host ruvnet/wifi-densepose:latest --source windows --tick-ms 500
225225
```
226226

227-
See [Tutorial #36](https://github.com/ruvnet/wifi-densepose/issues/36) for a walkthrough.
227+
See [Tutorial #36](https://github.com/ruvnet/RuView/issues/36) for a walkthrough.
228228

229229
### macOS WiFi (RSSI Only)
230230

@@ -628,12 +628,12 @@ A 3-6 node ESP32-S3 mesh provides full CSI at 20 Hz. Total cost: ~$54 for a 3-no
628628

629629
**Flashing firmware:**
630630

631-
Pre-built binaries are available at [Releases](https://github.com/ruvnet/wifi-densepose/releases):
631+
Pre-built binaries are available at [Releases](https://github.com/ruvnet/RuView/releases):
632632

633633
| Release | What It Includes | Tag |
634634
|---------|-----------------|-----|
635-
| [v0.2.0](https://github.com/ruvnet/wifi-densepose/releases/tag/v0.2.0-esp32) | Stable — raw CSI streaming, TDM, channel hopping, QUIC mesh | `v0.2.0-esp32` |
636-
| [v0.3.0-alpha](https://github.com/ruvnet/wifi-densepose/releases/tag/v0.3.0-alpha-esp32) | Alpha — adds on-device edge intelligence (ADR-039) | `v0.3.0-alpha-esp32` |
635+
| [v0.2.0](https://github.com/ruvnet/RuView/releases/tag/v0.2.0-esp32) | Stable — raw CSI streaming, TDM, channel hopping, QUIC mesh | `v0.2.0-esp32` |
636+
| [v0.3.0-alpha](https://github.com/ruvnet/RuView/releases/tag/v0.3.0-alpha-esp32) | Alpha — adds on-device edge intelligence (ADR-039) | `v0.3.0-alpha-esp32` |
637637

638638
```bash
639639
# Flash an ESP32-S3 (requires esptool: pip install esptool)
@@ -724,7 +724,7 @@ Binary size: 777 KB (24% free in the 1 MB app partition).
724724
docker run -p 3000:3000 -p 3001:3001 -p 5005:5005/udp ruvnet/wifi-densepose:latest --source esp32
725725
```
726726

727-
See [ADR-018](../docs/adr/ADR-018-esp32-dev-implementation.md), [ADR-029](../docs/adr/ADR-029-ruvsense-multistatic-sensing-mode.md), and [Tutorial #34](https://github.com/ruvnet/wifi-densepose/issues/34).
727+
See [ADR-018](../docs/adr/ADR-018-esp32-dev-implementation.md), [ADR-029](../docs/adr/ADR-029-ruvsense-multistatic-sensing-mode.md), and [Tutorial #34](https://github.com/ruvnet/RuView/issues/34).
728728

729729
### Intel 5300 / Atheros NIC
730730

@@ -756,6 +756,20 @@ This starts:
756756

757757
## Troubleshooting
758758

759+
### Docker: "no matching manifest for linux/arm64" on macOS
760+
761+
The `latest` tag supports both amd64 and arm64. Pull the latest image:
762+
763+
```bash
764+
docker pull ruvnet/wifi-densepose:latest
765+
```
766+
767+
If you still see this error, your local Docker may have a stale cached manifest. Try:
768+
769+
```bash
770+
docker pull --platform linux/arm64 ruvnet/wifi-densepose:latest
771+
```
772+
759773
### Docker: "Connection refused" on localhost:3000
760774

761775
Make sure you're mapping the ports correctly:

0 commit comments

Comments
 (0)