-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathapp.json
More file actions
73 lines (73 loc) · 2.51 KB
/
app.json
File metadata and controls
73 lines (73 loc) · 2.51 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
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
{
"name": "SamfunStreamerBot",
"description": "https://telegram.dog/SamfunStreamerBot",
"keywords": [
"telegram",
"live",
"livestream",
"rtmps"
],
"success_url": "https://github.com/Samfun75/SamfunStreamerBot",
"website": "https://github.com/Samfun75/SamfunStreamerBot",
"repository": "https://github.com/Samfun75/SamfunStreamerBot",
"env": {
"ENV": {
"description": "Setting this to ANYTHING will enable VARs when in ENV mode",
"value": "ANYTHING"
},
"TG_BOT_TOKEN": {
"description": "Your bot token, as a string.",
"required": true
},
"TG_API_ID": {
"description": "Get this value from https://my.telegram.org",
"required": true
},
"TG_API_HASH": {
"description": "Get this value from https://my.telegram.org",
"required": true
},
"ALLOWED_USERS": {
"description": "A list of users (user ids) allowed to use the bot. Please enter in the format [123123123, 321321321]",
"required": true
},
"DATABASE_DB_HOST": {
"description": "Watch this video to understand what database is: https://youtu.be/vgzMacnI5Z8",
"required": true
},
"DATABASE_DB_USERNAME": {
"description": "Watch this video to understand what database is: https://youtu.be/vgzMacnI5Z8",
"required": true
},
"DATABASE_DB_PASSWORD": {
"description": "Watch this video to understand what database is: https://youtu.be/vgzMacnI5Z8",
"required": true
},
"DATABASE_DB_NAME": {
"description": "Watch this video to understand what database is: https://youtu.be/vgzMacnI5Z8",
"required": true
},
"DATABASE_DB_TYPE": {
"description": "The type of Mongodb you are using. Enter 'Mongo_Atlas' or 'Mongo_Community'",
"required": true
},
"USER_SESSION": {
"description": "A user session string run the example here and input the result: https://docs.pyrogram.org/api/methods/export_session_string",
"required": true
}
},
"buildpacks": [
{
"url": "heroku/python"
},
{
"url": "https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest"
}
],
"formation": {
"worker": {
"quantity": 1,
"size": "free"
}
}
}