wattetheria 0.2.0 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -1
- package/docker-compose.release.yml +7 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -709,7 +709,10 @@ WATTETHERIA_GATEWAY_URLS=http://gateway.example.com:8080
|
|
|
709
709
|
|
|
710
710
|
`docker-compose.release.yml` also mounts `${WATTSWARM_HOST_STATE_DIR}/startup_config.json` into the
|
|
711
711
|
kernel container. If `WATTETHERIA_GATEWAY_URLS` is unset, the kernel now falls back to `gateway_urls`
|
|
712
|
-
saved by the Wattswarm startup UI in that file.
|
|
712
|
+
saved by the Wattswarm startup UI in that file. Wattetheria also resolves coarse node geo location
|
|
713
|
+
at startup and syncs the resulting `latitude` / `longitude` into that mounted startup config so
|
|
714
|
+
Wattswarm can publish nearby-discovery coordinates without exposing editable geo fields in the
|
|
715
|
+
startup UI.
|
|
713
716
|
|
|
714
717
|
When Wattetheria registers `core-agent` with Wattswarm, it keeps the brain/runtime
|
|
715
718
|
`base_url` pointed at the OpenAI-compatible gateway for `/execute` work and exposes a
|
|
@@ -114,6 +114,13 @@ services:
|
|
|
114
114
|
WATTSWARM_UDP_ANNOUNCE_MODE: ${WATTSWARM_UDP_ANNOUNCE_MODE:-multicast}
|
|
115
115
|
WATTSWARM_UDP_ANNOUNCE_ADDR: ${WATTSWARM_UDP_ANNOUNCE_ADDR:-239.255.42.99}
|
|
116
116
|
WATTSWARM_UDP_ANNOUNCE_PORT: ${WATTSWARM_UDP_ANNOUNCE_PORT:-37931}
|
|
117
|
+
WATTSWARM_IROH_RELAY_URLS: ${WATTSWARM_IROH_RELAY_URLS:-}
|
|
118
|
+
WATTSWARM_IROH_PUBLISH_DIRECT_ADDRS: ${WATTSWARM_IROH_PUBLISH_DIRECT_ADDRS:-true}
|
|
119
|
+
WATTSWARM_PUBLIC_BOOTSTRAP_URLS: ${WATTSWARM_PUBLIC_BOOTSTRAP_URLS:-}
|
|
120
|
+
WATTSWARM_PUBLIC_BOOTSTRAP_CONTACTS: ${WATTSWARM_PUBLIC_BOOTSTRAP_CONTACTS:-}
|
|
121
|
+
WATTSWARM_PUBLIC_GATEWAY_URLS: ${WATTSWARM_PUBLIC_GATEWAY_URLS:-}
|
|
122
|
+
WATTSWARM_PUBLIC_DISCOVERY_URLS: ${WATTSWARM_PUBLIC_DISCOVERY_URLS:-}
|
|
123
|
+
WATTSWARM_NETWORK_JOIN_MANIFEST_URLS: ${WATTSWARM_NETWORK_JOIN_MANIFEST_URLS:-}
|
|
117
124
|
volumes:
|
|
118
125
|
- ${WATTSWARM_HOST_STATE_DIR:-./data/wattswarm}:/var/lib/wattswarm
|
|
119
126
|
ports:
|