You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+17Lines changed: 17 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -211,6 +211,7 @@ Shows Dev Proxy status at a glance:
211
211
|`dev-proxy-toolkit.closeTerminal`|`boolean`|`true`| Close terminal when stopping |
212
212
|`dev-proxy-toolkit.apiPort`|`number`|`8897`| Port for Dev Proxy API communication |
213
213
|`dev-proxy-toolkit.devProxyPath`|`string`|`""`| Custom path to Dev Proxy executable (uses auto-detection if empty) |
214
+
|`dev-proxy-toolkit.env`|`object`|`{}`| Environment variables to set when starting Dev Proxy |
214
215
215
216
## Tasks
216
217
@@ -239,6 +240,22 @@ Run Dev Proxy as a VS Code task for integration with build workflows.
239
240
}
240
241
```
241
242
243
+
You can pass environment variables to Dev Proxy using the `env` property:
244
+
245
+
```json
246
+
{
247
+
"label": "Start Dev Proxy",
248
+
"type": "devproxy",
249
+
"command": "start",
250
+
"env": {
251
+
"NODE_ENV": "development",
252
+
"DEBUG": "true"
253
+
},
254
+
"isBackground": true,
255
+
"problemMatcher": "$devproxy-watch"
256
+
}
257
+
```
258
+
242
259
## MCP Server
243
260
244
261
This extension includes an MCP server for AI-assisted development. See [Dev Proxy MCP Server](https://github.com/dev-proxy-tools/mcp) for available tools.
0 commit comments