-
Notifications
You must be signed in to change notification settings - Fork 126
/
Copy pathapp.json
61 lines (61 loc) · 1.59 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
{
"name": "Spotify Downloa",
"description": "A simple Telegram bot to download music.",
"keywords": [
"bot",
"music",
"music downloader"
],
"repository": "https://github.com/masterolic/",
"website": "https://t.me/Spotify_downloa",
"success_url": "https://t.me/spotify_downloa_bot",
"env": {
"API_ID": {
"description": "Your Telegram API ID",
"value": ""
},
"API_HASH": {
"description": "Get this value from my.telegram.org! Please do not steal",
"value": ""
},
"BOT_TOKEN": {
"description": "Make a bot at http://telegram.dog/BotFather and get the token of your bot.Worth it. Get it.",
"value": ""
},
"OWNER_ID": {
"description": "The ID of the owner of the bot",
"value": ""
},
"SUDO_USERS": {
"description": "The ID of the sudo users of the bot",
"value": "",
"required": false
},
"AUTH_CHATS": {
"description": "The ID of the authorized chats of the bot",
"value": "",
"required": false
},
"LOG_GROUP": {
"description": "The ID of the group to log to",
"value": "",
"required": false
},
"SPOTIPY_CLIENT_SECRET": {
"description": "The client secret of the Spotify API",
"value": "0f02b7c483c04257984695007a4a8d5c"
},
"SPOTIPY_CLIENT_ID": {
"description": "The client ID of the Spotify API",
"value": "4fe3fecfe5334023a1472516cc99d805"
}
},
"buildpacks": [
{
"url": "https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest.git"
},
{
"url": "heroku/python"
}
]
}