-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
35 lines (35 loc) · 944 Bytes
/
app.json
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
32
33
34
35
{
"name": "code-server-heroku",
"description": "A code-server environment designed to run in your Heroku",
"repository": "https://github.com/PWRScript/TaritaX",
"keywords": [
"node"
],
"buildpacks": [
{
"url": "heroku/nodejs"
}
],
"env": {
"DISCORD_CLIENT_ID": {
"description": "Client ID of the bot (used to identify the bot)",
"required": true
},
"DISCORD_CLIENT_SECRET": {
"description": "Client Secret of the bot",
"required": true
},
"DISCORD_INTENTS": {
"description": "Intents of the bot (used to subscribe to events)",
"required": true
},
"DISCORD_PUBLIC_KEY": {
"description": "Public key of the bot",
"required": true
},
"DISCORD_TOKEN": {
"description": "Token of the bot (used to login to discord)",
"required": true
}
}
}