We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df16410 commit 7a84682Copy full SHA for 7a84682
4 files changed
Makefile
@@ -61,14 +61,14 @@ proxy:
61
mitmweb -p 8888 --mode reverse:http://localhost:8000 --web-port 8081
62
63
# SSE server for testing locally
64
-sgw-sse: build
+sgw-sse: build-prod install-prod
65
npx -y supergateway \
66
--stdio "node build/index.js" \
67
--port 8000 --baseUrl http://localhost:8000 \
68
--ssePath /sse --messagePath /message
69
70
# MCP server for testing locally
71
-sgw-mcp: build
+sgw-mcp: build-prod install-prod
72
73
74
--outputTransport streamableHttp \
manifest.json
@@ -16,7 +16,9 @@
16
"args": [
17
"${__dirname}/build/index.js"
18
],
19
- "env": {}
+ "env": {
20
+ "NODE_ENV": "production"
21
+ }
22
}
23
},
24
"keywords": [
0 commit comments