-
Notifications
You must be signed in to change notification settings - Fork 52
/
app.json
101 lines (101 loc) · 3.5 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "Skyzo Music",
"description": "Music allow you to stream music trought the telegram voice chat feature.",
"keywords": ["music", "voice chat", "telegram"],
"repository": "https://github.com/ridho17-ind/SkyzoMusicBot",
"stack": "container",
"env": {
"SESSION_NAME": {
"description": "fill with the pyrogram session string from account",
"required": true
},
"OWNER_ID": {
"description": "fill with your telegram id as the owner of the bot",
"required": true,
"value": "Isi Id Lu"
},
"BOT_IMG": {
"description": "Photo for your bot",
"value": "https://telegra.ph/file/d3f62131358c475dda9ae.jpg",
"required": true
},
"ASS_ID": {
"description": "fill with telegram id of account",
"required": true,
"value": "Isi Id Asisten Lu"
},
"LOG_GROUP_ID": {
"description": "create a private group and get the group id, add your bot as admin to the group too",
"required": true,
"value": "Isi Id Log Group Lu Dan Pastikan Bot Dan Asisten Jadi Admin Di Grup Log Lu"
},
"API_ID": {
"description": "your Api ID from my.telegram.org/apps",
"required": true,
"value": "Isi Pakai Api Id Lu"
},
"API_HASH": {
"description": "your Api Hash from my.telegram.org/apps",
"required": true,
"value": "Isi Pakai Api Hash Lu"
},
"HEROKU_API_KEY": {
"description": "Your Heroku account's API key",
"value": "",
"required": false
},
"HEROKU_APP_NAME": {
"description": "Your heroku app/bot's name",
"value": "",
"required": false
},
"SUDO_USERS": {
"description": "fill with the user id who can access all function in your bot (separate with space).",
"required": true,
"value": "Isi Id Lu Juga Sebagai Sudo User"
},
"DURATION_LIMIT": {
"description": "filled, don't change this !",
"required": true,
"value": "54000"
},
"BOT_TOKEN": {
"description": "fill with your bot token get from @BotFather on telegram",
"required": true,
"value": "Isi Pakai Bot Token"
},
"MONGO_DB_URI": {
"description": "fill with the mongodb url get from mongodb.cloud.com (don't use mine below !)",
"required": false,
"value": "Isi Pakai Mongo Lu"
},
"UPSTREAM_REPO": {
"description": "If you dont know this, Leave as it is",
"value": "https://github.com/ridho17-ind/SkyzoMusicBot",
"required": true
},
"UPSTREAM_BRANCH": {
"description": "Repo's Branch Name",
"value": "main",
"required": true
},
"CHANNEL": {
"description": "Fill in using your channel username without @",
"required": true,
"value": "SadRoomsInfo"
},
"GROUP": {
"description": "Fill in using your channel username without the @",
"required": true,
"value": "FlicksRobotSupport"
}
},
"buildpacks": [
{
"url": "https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest.git"
},
{
"url": "heroku/python"
}
]
}