-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp.json
More file actions
47 lines (47 loc) · 1.11 KB
/
app.json
File metadata and controls
47 lines (47 loc) · 1.11 KB
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
{
"name" : "translator-bot",
"description" : "Telegram Bot for translating messages.",
"keywords" : [
"telegram",
"bot",
"heroku",
"railway",
"python",
"pyrogram",
"app.json",
"app",
"tranlate",
"google",
"translator"
],
"repository" : "https://github.com/AJTimePyro/translator-bot",
"env" : {
"BOT_TOKEN" : {
"description" : "Make a bot from https://t.me/BotFather"
},
"API_ID" : {
"description" : "Get this value from https://my.telegram.org/apps"
},
"API_HASH" : {
"description" : "Get this value from https://my.telegram.org/apps"
},
"OWNER_ID" : {
"description" : "Your Telegram User ID"
},
"GROUP_USER_DATA" : {
"description" : "Check README.md"
}
},
"stack" : "heroku-20",
"buildpacks" : [
{
"url" : "heroku/python"
}
],
"formation" : {
"worker" : {
"quantity" : 1,
"size" : "free"
}
}
}