generated from mrbbot/slshx-starter
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathenv.example.jsonc
More file actions
31 lines (27 loc) · 882 Bytes
/
env.example.jsonc
File metadata and controls
31 lines (27 loc) · 882 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
27
28
29
30
31
{
// TODO: Copy this file to env.jsonc and fill out the values
// Do NOT commit the copied file!
// ID of the server to deploy commands to on code change during development
"testServerId": "",
// Create applications here: https://discord.com/developers/applications
// Configuration for the development application, with its
// Interactions Endpoint URL set to your Cloudflare Tunnel URL
"development": {
"applicationId": "",
"applicationPublicKey": "",
"applicationSecret": ""
},
// Configuration for the production application, with its
// Interactions Endpoint URL set to your deployed worker's URL
"production": {
"applicationId": "",
"applicationPublicKey": "",
"applicationSecret": ""
},
// Used in script/update-kv.js
"kv": {
"accountId": "",
"namespaceId": "",
"apiToken": ""
}
}