-
Notifications
You must be signed in to change notification settings - Fork 278
/
app.json
85 lines (85 loc) · 2.41 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
85
{
"name": "Alexa Music",
"description": "Deploy Alexa music on railwey make sure to star the projecte.",
"logo": "https://telegra.ph/file/ba967503682a55beaedd3.png",
"keywords": [
"python3",
"telegram",
"bot",
"Alexa",
"alexamusic",
"alexamusicbot",
"pyrogram"
],
"env": {
"API_ID": {
"description": "Get this value from https://my.telegram.org",
"value": "",
"required": true
},
"API_HASH": {
"description": "Get this value from https://my.telegram.org",
"value": "",
"required": true
},
"BOT_TOKEN": {
"description": "A Bot's token from Botfather",
"value": "",
"required": true
},
"OWNER_ID": {
"description": "The user id(s) of user(s) whom you would like to add as a OWNER. Multiple values shall be seperated with a space.",
"value": "5303133436",
"required": true
},
"MONGO_DB_URI": {
"description": "Mongo DB URL",
"value": "",
"required": true
},
"MUSIC_BOT_NAME": {
"description": "A name for your Music Bot.",
"value": "",
"required": true
},
"STRING_SESSION": {
"description": "A Pyrogram Session Get It From Here @Session_Generator_Robot.",
"value": "",
"required": true
},
"HEROKU_API_KEY": {
"description": "Your Heroku account's API key",
"value": "",
"required": true
},
"HEROKU_APP_NAME": {
"description": "Your heroku app name",
"value": "",
"required": true
},
"UPSTREAM_REPO": {
"description": "If you dont know this, Leave as it is",
"value": "https://github.com/TheTeamAlexa/AlexaMusic",
"required": false
},
"LOG_GROUP_ID": {
"description": "Your Log Group ID, add your bot and promote as an admin with full rights!. Use only Group. Please don't use Channel ID.",
"value": "",
"required": true
},
"COOKIES": {
"description": "Paste your batbin link.",
"value": "https://batbin.me/raw/",
"required": true
}
},
"buildpacks": [
{
"url": "heroku/python"
},
{
"url": "https://github.com/heroku/heroku-buildpack-activestorage-preview.git"
}
],
"stack": "container"
}