forked from KoyoTeam/Alphonse
-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
38 lines (38 loc) · 1.18 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
{
"name": "Alphonse",
"description": "[Alphonse] A modular Telegram userbot running on Python 3.8+ with an sqlalchemy database.",
"logo": "https://telegra.ph/file/4c783ff13d1aff258d720.jpg",
"keywords": ["telegram", "userbot", "plugin", "modular", "productivity"],
"repository": "https://github.com/TeamAlphonse/Alphonse",
"website": "#",
"success_url": "#",
"stack": "container",
"env": {
"API_KEY": {
"description": "Get this value from my.telegram.org."
},
"API_HASH": {
"description": "Get this value from my.telegram.org."
},
"STRING_SESSION": {
"description": "Get this value by running [python3 string_session.py] in Termux or local system."
},
"HEROKU_API_KEY": {
"description": "Your Heroku API key, get it from 'https://dashboard.heroku.com/account'"
},
"HEROKU_APP_NAME": {
"description": "Add the Heroku app name here. It helps with userbot updates."
},
"BOTLOG_CHATID": {
"description": "ChatID of the Log group. Make sure no one else is in this group except you."
}
},
"addons": [
{
"plan": "heroku-postgresql",
"options": {
"version": "12"
}
}
]
}