Skip to content

Commit 6d5ccd8

Browse files
committed
Merge remote-tracking branch 'origin/main'
2 parents e2c4f65 + 4b15808 commit 6d5ccd8

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

AGENTS.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -151,10 +151,21 @@ python -m reticulum_telemetry_hub.reticulum_server --storage_dir ./RCH_Store --d
151151
# Run the gateway (hub + API)
152152
python -m reticulum_telemetry_hub.northbound.gateway --data-dir ./RCH_Store --port 8000
153153

154+
# Run only the API server (without hub runtime wiring)
155+
uvicorn reticulum_telemetry_hub.northbound.app:app --host 0.0.0.0 --port 8000
156+
154157
# Or use the CLI
155158
rch start --data-dir ./RCH_Store --port 8000 --log-level info
156159
rch status --data-dir ./RCH_Store
157160
rch stop --data-dir ./RCH_Store
161+
162+
# Combined backend + UI launchers
163+
./run_server_ui.sh # Linux/macOS local bind (127.0.0.1 defaults)
164+
run_server_ui.bat # Windows local bind (127.0.0.1 defaults)
165+
./run_server_ui_remote.sh # Linux remote-friendly bind; requires RTH_API_KEY
166+
167+
# Remote-access gateway bind (LAN/WAN)
168+
python -m reticulum_telemetry_hub.northbound.gateway --data-dir ./RCH_Store --api-host 0.0.0.0 --port 8000
158169
```
159170

160171
### UI Development
@@ -560,6 +571,7 @@ with self.storage.session() as session:
560571

561572
- `docs/architecture.md` - System architecture and data flows
562573
- `docs/userManual.md` - User and operator guide
574+
- `docs/remoteAccess.md` - LAN/WAN access and `systemd` deployment guide
563575
- `docs/internal-api.md` - Internal API contract
564576
- `docs/TelemetryDocumentation.md` - Telemetry wire format
565577
- `docs/tak.md` - TAK integration details

0 commit comments

Comments
 (0)