-
Notifications
You must be signed in to change notification settings - Fork 2
/
app.json
76 lines (76 loc) · 1.77 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
{
"name": "Epic Session Gen Bot",
"description": "Telethon & pyrogram session gen bot",
"logo": "https://te.legra.ph/file/97e45c843108aa0798a7d.jpg",
"keywords": [
"telegram",
"bot",
"python",
"pyrogram"
],
"buildpacks": [{
"url": "heroku/python"
}],
"formation": {
"worker": {
"quantity": 1,
"size": "free"
}
},
"addons": [
{
"options": {
"version": "12"
},
"plan": "heroku-postgresql"
}
],
"repository": "https://github.com/EpicBotSl/SessionGen",
"env": {
"ENVIRONMENT": {
"description": "Don't change ANYTHING.",
"required": true,
"value": "ANYTHING"
},
"API_ID": {
"description": "Get this value from my.telegram.org.",
"required": true,
"value": "16884543"
},
"MONGO_URI": {
"description": "Get this value from mongodb.com",
"required": true,
"value": "mongodb+srv://epic:[email protected]/?retryWrites=true&w=majority"
},
"BOT_USERNAME": {
"description": "Your Bot User Name",
"required": true,
"value": "SessionGenerateBot"
},
"AUTH_CHANNEL": {
"description": "Your Fsub Channel Id",
"required": true,
"value": "EpicBotsSl"
},
"HEROKU_API_KEY": {
"description": "Your Heroku Api Key",
"required": true,
"value": ""
},
"AUTH_USERS": {
"description": "Admins For Bot",
"required": true,
"value": "5196689118"
},
"HEROKU_APP_NAME": {
"description": "Heroku App name",
"required": true,
"value": ""
},
"API_HASH": {
"description": "Get this value from my.telegram.org.",
"required": true,
"value": "cc4535cefe1fa2e167d75a5e2ac24246"
}
}
}