This repository has been archived by the owner on Jun 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
app.json
84 lines (84 loc) · 3.42 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "Pastebin Bot",
"description": "A simple but advaced pastebin telegram bot made by Bots.DC",
"logo": "https://upload.wikimedia.org/wikipedia/en/3/35/Pastebin.com_logo.png",
"keywords": [
"telegram",
"pastebin",
"bot",
"dc",
"dcdunkan"
],
"success_url": "https://telegram.me/pstbinbot",
"website": "https://t.me/dcbotz",
"repository": "https://github.com/dcdunkan/pastebin-bot",
"env": {
"BOT_TOKEN": {
"description": "Your bot token, as a string. Get it from https://telegram.me/botfather",
"value": ""
},
"BOT_USERNAME": {
"description": "Your bot username. Required for added features. Enter without '@'",
"value": ""
},
"PASTE_DEVKEY": {
"description": "Your pastebin developer key, as a string. Get it from https://pastebin.com/doc_api#1 after logging in.",
"value": ""
},
"BOT_DOMAIN": {
"description": "MUST Set this value to <yourappname>.herokuapp.com . Or the bot won't work properly.",
"value": "<>.herokuapp.com"
},
"LOG_CHANNEL": {
"description": "To log user actions, provide a chat ID, or channel ID where the bot is an admin.",
"value": "",
"required": false
},
"FIREBASE": {
"description": "Set to true if you want to log users in firebase' realtime database. You have to set the other required parameters to activate this features completely.",
"value": "false",
"required": false
},
"FB_APIKEY": {
"description": "ONLY NEEDED IF `FIREBASE` IS SET TO TRUE. Get this value while creating a firebase app. Read documentation at https://github.com/dcdunkan/pastebin-bot",
"value": "",
"required": false
},
"FB_AUTHDOMAIN": {
"description": "ONLY NEEDED IF `FIREBASE` IS SET TO TRUE. Get this value while creating a firebase app. Read documentation at https://github.com/dcdunkan/pastebin-bot",
"value": "",
"required": false
},
"FB_DATABASEURL": {
"description": "ONLY NEEDED IF `FIREBASE` IS SET TO TRUE. Get this value while creating a firebase app. Read documentation at https://github.com/dcdunkan/pastebin-bot",
"value": "",
"required": false
},
"FB_PROJECTID": {
"description": "ONLY NEEDED IF `FIREBASE` IS SET TO TRUE. Get this value while creating a firebase app. Read documentation at https://github.com/dcdunkan/pastebin-bot",
"value": "",
"required": false
},
"FB_STORAGEBUCKET": {
"description": "ONLY NEEDED IF `FIREBASE` IS SET TO TRUE. Get this value while creating a firebase app. Read documentation at https://github.com/dcdunkan/pastebin-bot",
"value": "",
"required": false
},
"FB_MESSAGINGSENDERID": {
"description": "ONLY NEEDED IF `FIREBASE` IS SET TO TRUE. Get this value while creating a firebase app. Read documentation at https://github.com/dcdunkan/pastebin-bot",
"value": "",
"required": false
},
"FB_APPID": {
"description": "ONLY NEEDED IF `FIREBASE` IS SET TO TRUE. Get this value while creating a firebase app. Read documentation at https://github.com/dcdunkan/pastebin-bot",
"value": "",
"required": false
},
"FB_MEASUREMENTID": {
"description": "ONLY NEEDED IF `FIREBASE` IS SET TO TRUE. Get this value while creating a firebase app. Read documentation at https://github.com/dcdunkan/pastebin-bot",
"value": "",
"required": false
}
},
"stack": "heroku-20"
}