wmdev 0.2.2 → 0.3.0
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 +3 -3
- package/backend/dist/server.js +481 -53
- package/bin/wmdev.js +3 -3
- package/frontend/dist/assets/index-D9tls-CM.css +32 -0
- package/frontend/dist/assets/index-Dp6OOEt3.js +25 -0
- package/frontend/dist/index.html +7 -2
- package/package.json +3 -4
- package/frontend/dist/assets/index-CRpS9q83.js +0 -25
- package/frontend/dist/assets/index-Cy7rpGPt.css +0 -32
package/README.md
CHANGED
|
@@ -114,7 +114,7 @@ linkedRepos: []
|
|
|
114
114
|
```yaml
|
|
115
115
|
services:
|
|
116
116
|
- name: BE
|
|
117
|
-
portEnv:
|
|
117
|
+
portEnv: BACKEND_PORT
|
|
118
118
|
portStart: 5111
|
|
119
119
|
portStep: 10
|
|
120
120
|
- name: FE
|
|
@@ -138,7 +138,7 @@ profiles:
|
|
|
138
138
|
writable: true
|
|
139
139
|
systemPrompt: >
|
|
140
140
|
You are running inside a sandboxed container.
|
|
141
|
-
Backend port: ${
|
|
141
|
+
Backend port: ${BACKEND_PORT}. Frontend port: ${FRONTEND_PORT}.
|
|
142
142
|
|
|
143
143
|
linkedRepos:
|
|
144
144
|
- repo: myorg/related-service
|
|
@@ -224,7 +224,7 @@ For sandbox profiles, wmdev manages Docker containers directly:
|
|
|
224
224
|
|
|
225
225
|
| Variable | Default | Description |
|
|
226
226
|
|----------|---------|-------------|
|
|
227
|
-
| `
|
|
227
|
+
| `BACKEND_PORT` | `5111` | Backend API port (also configurable via `--port`) |
|
|
228
228
|
|
|
229
229
|
## Keyboard shortcuts
|
|
230
230
|
|