-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
26 lines (20 loc) · 918 Bytes
/
Copy path.env.example
File metadata and controls
26 lines (20 loc) · 918 Bytes
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
# --- Required ---
# Your bot token from https://discord.com/developers/applications -> Bot
DISCORD_TOKEN=
# Your application's client ID (Application ID on the same page)
DISCORD_CLIENT_ID=
# --- Optional ---
# Deploy commands to a single guild for instant updates while developing.
# Leave empty to deploy globally (can take up to an hour to propagate).
DISCORD_GUILD_ID=
# MDN MCP endpoint. Defaults to the public server; override to run mdn/mcp locally.
MDN_MCP_URL=https://mcp.mdn.mozilla.net/
# Prefix added to every generated command name, e.g. mdn- gives /mdn-search.
COMMAND_PREFIX=
# Set to 1/true to send MDN's analytics opt-out header with every request.
MDN_OPT_OUT=
# How often (ms) to re-check the MCP tool list and redeploy on change. Default 900000 (15m).
REFRESH_INTERVAL_MS=900000
# Logging. Set NODE_ENV=production for JSON logs; otherwise pretty-printed.
LOG_LEVEL=info
NODE_ENV=development