File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed
Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -151,10 +151,21 @@ python -m reticulum_telemetry_hub.reticulum_server --storage_dir ./RCH_Store --d
151151# Run the gateway (hub + API)
152152python -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
155158rch start --data-dir ./RCH_Store --port 8000 --log-level info
156159rch status --data-dir ./RCH_Store
157160rch 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
You can’t perform that action at this time.
0 commit comments