Good
This commit is contained in:
parent
bc346138dd
commit
bb236bc12d
2 changed files with 86 additions and 1 deletions
79
app.json
Normal file
79
app.json
Normal file
|
@ -0,0 +1,79 @@
|
||||||
|
{
|
||||||
|
"name": "cath.exe - CODM Bot",
|
||||||
|
"description": "Host cath.exe through Heroku",
|
||||||
|
"keywords": ["cat", "cath", "codm", "discord", "discord bot"],
|
||||||
|
"repository": "https://github.com/night0721/cath.exe",
|
||||||
|
"env": {
|
||||||
|
"TOKEN": {
|
||||||
|
"description": "Bot Token from https://discord.com/developers/applications",
|
||||||
|
"value": ""
|
||||||
|
},
|
||||||
|
"MONGO": {
|
||||||
|
"description": "MongoDB URI from https://mongodb.com/",
|
||||||
|
"value": ""
|
||||||
|
},
|
||||||
|
"CLIENT_ID": {
|
||||||
|
"description": "Bot ID from https://discord.com/developers/applications",
|
||||||
|
"value": ""
|
||||||
|
},
|
||||||
|
"CLIENT_SECRET": {
|
||||||
|
"description": "Client Secret from https://discord.com/developers/applications",
|
||||||
|
"value": ""
|
||||||
|
},
|
||||||
|
"DMLogID": {
|
||||||
|
"description": "DM Log Webhook ID",
|
||||||
|
"value": ""
|
||||||
|
},
|
||||||
|
"DMLogToken": {
|
||||||
|
"description": "DM Log Webhook Token",
|
||||||
|
"value": ""
|
||||||
|
},
|
||||||
|
"CMDLogID": {
|
||||||
|
"description": "Command Log Webhook ID",
|
||||||
|
"value": ""
|
||||||
|
},
|
||||||
|
"CMDLogToken": {
|
||||||
|
"description": "Command Log Webhook Token",
|
||||||
|
"value": ""
|
||||||
|
},
|
||||||
|
"ReadyLogID": {
|
||||||
|
"description": "Ready Log Webhook ID",
|
||||||
|
"value": ""
|
||||||
|
},
|
||||||
|
"ReadyLogToken": {
|
||||||
|
"description": "Ready Log Webhook Token",
|
||||||
|
"value": ""
|
||||||
|
},
|
||||||
|
"ErrorLogID": {
|
||||||
|
"description": "Error Log Webhook ID",
|
||||||
|
"value": ""
|
||||||
|
},
|
||||||
|
"ErrorLogToken": {
|
||||||
|
"description": "Error Log Webhook Token",
|
||||||
|
"value": ""
|
||||||
|
},
|
||||||
|
"ServerLogID": {
|
||||||
|
"description": "Server Log Webhook ID",
|
||||||
|
"value": ""
|
||||||
|
},
|
||||||
|
"ServerLogToken": {
|
||||||
|
"description": "Server Log Webhook Token",
|
||||||
|
"value": ""
|
||||||
|
},
|
||||||
|
"PORT": {
|
||||||
|
"description": "Port for Heroku to use",
|
||||||
|
"value": "3000",
|
||||||
|
"required": false
|
||||||
|
},
|
||||||
|
"REDIRECT": {
|
||||||
|
"description": "REDIRECT URL",
|
||||||
|
"value": "",
|
||||||
|
"required": false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"buildpacks": [
|
||||||
|
{
|
||||||
|
"url": "heroku/nodejs"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -17,7 +17,13 @@
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git+https://github.com/night0721/cath.git"
|
"url": "git+https://github.com/night0721/cath.git"
|
||||||
},
|
},
|
||||||
"keywords": [],
|
"keywords": [
|
||||||
|
"cat",
|
||||||
|
"cath",
|
||||||
|
"codm",
|
||||||
|
"discord",
|
||||||
|
"discord bot"
|
||||||
|
],
|
||||||
"author": "Ń1ght#0001",
|
"author": "Ń1ght#0001",
|
||||||
"license": "ISC",
|
"license": "ISC",
|
||||||
"bugs": {
|
"bugs": {
|
||||||
|
|
Loading…
Reference in a new issue