-
Notifications
You must be signed in to change notification settings - Fork 49
/
app.json
35 lines (35 loc) · 1.38 KB
/
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": "Nhentai telegram bot",
"description": "A simple Nodejs telegram bot for reading doujings from nhentai, instantly up and running (not always).",
"repository": "https://github.com/iamdowner/nhentai-telegram-bot",
"keywords": ["Nodejs", "Heroku", "Telegram"],
"env": {
"HEROKU_APP_NAME": {
"description": "App name again (should be the same)",
"required": true
},
"BOT_TOKEN": {
"description": "Your bot token from https://t.me/BotFather",
"required": true
},
"DATABASE_URL": {
"description": "URL to connect to your database https://www.freecodecamp.org/news/get-started-with-mongodb-atlas/",
"value": "mongodb+srv://<username>:<password>@<cluster-name>.mongodb.net/<db-name>?retryWrites=true&w=majority",
"required": true
},
"DATABASE2_URL": {
"description": "URL to your second database if you want to store users separately",
"value": "mongodb+srv://<username>:<password>@<cluster-name>.mongodb.net/<db-name>?retryWrites=true&w=majority",
"required": false
},
"IGNORED_TAGS": {
"description": "Tags that will be ignored by default for all users, divided by ', '",
"value": "torture, shotacon",
"required": false
},
"TELEGRAPH_TOKEN": {
"description": "Will be created if not specified (https://telegra.ph/api#createAccount)",
"required": false
}
}
}