-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy path.env.example
More file actions
28 lines (21 loc) · 1.04 KB
/
.env.example
File metadata and controls
28 lines (21 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# (Required) The MCP server to run inside container
NPM_MCP="@modelcontextprotocol/server-filesystem"
# (Optional) Set this variable to pass arguments to the MCP server, otheriwse leave empty
NPM_MCP_ARGS="/home"
# (Optional) Pass '--stateful' if your MCP server is stateful, otherwise leave empty
SUPERGATEWAY_EXTRA_ARGS="--stateful"
# (Optional) Which node version to install
NODE_VERSION="lts"
# (Optional) Set this if you're using nginx proxy to secure your connection
ACCESS_TOKEN="secret_key__please_change"
# (Optional) Set this if you're using NGrok tunnel to secure your connection
NGROK_URL="example-url.ngrok.app"
NGROK_AUTHTOKEN="secret_key__please_change"
NGROK_BASIC_AUTH="user:password__please_change"
# (Optional) Set this if you're using Pinggy tunnel to secure your connection
PINGGY_ACCESS_TOKEN="secret_key__please_change"
PINGGY_BEARER_TOKEN="secret_key__please_change"
# (Optional) SSH keys are required for create and deploy NPM scripts
SSH_HOST="dokku_host.example.com"
SSH_USERNAME="ubuntu"
SSH_PRIVATE_KEY="secret_key__please_change"