@solcreek/dew 0.7.50 → 0.7.51
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 +7 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -89,6 +89,13 @@ port = 8025
|
|
|
89
89
|
`dew up` then boots the project and its services in one VM; containers use
|
|
90
90
|
the VM network, so the dev server reaches them on `localhost`.
|
|
91
91
|
|
|
92
|
+
To reach a service running on the **macOS host** (e.g. a websocket gateway
|
|
93
|
+
in the VM calling back to a host RPC), use the hostname `host.internal`
|
|
94
|
+
(alias `host.dew.internal`) — dew's equivalent of `host.docker.internal`.
|
|
95
|
+
It resolves to the VM's NAT gateway in both the guest and its containers,
|
|
96
|
+
so you never hardcode the `192.168.64.x` gateway IP. The host service must
|
|
97
|
+
bind `0.0.0.0` (not `127.0.0.1`) to be reachable from the VM.
|
|
98
|
+
|
|
92
99
|
### Share instantly
|
|
93
100
|
|
|
94
101
|
Temporary public HTTPS URL for any local port. Zero config, zero account.
|