forked from UsergeTeam/Userge
-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
81 lines (81 loc) · 2.43 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
{
"name": "Userge",
"description": "telegram pluggable userbot",
"keywords": [
"userge",
"telegram",
"pluggable",
"userbot"
],
"repository": "https://github.com/uaudith/Userge",
"env": {
"APP_ID": {
"description": "Get this value from https://my.telegram.org"
},
"API_HASH": {
"description": "Get this value from https://my.telegram.org"
},
"HU_STRING_SESSION": {
"description": "Get it by running `bash genStr` command or ignore this",
"required": false
},
"DATABASE_URL": {
"description": "Mongodb url from https://cloud.mongodb.com/"
},
"G_DRIVE_CLIENT_ID": {
"description": "Googel Drive API Keys from https://console.developers.google.com/"
},
"G_DRIVE_CLIENT_SECRET": {
"description": "Googel Drive API Keys from https://console.developers.google.com/"
},
"G_DRIVE_IS_TD": {
"description": "Set True if it is TeamDrive",
"value": "True"
},
"PREFERRED_LANGUAGE": {
"description": "Your Languge ( ex: if english => 'en' )",
"required": false
},
"SCREENSHOT_API": {
"description": "api key from 'https://screenshotlayer.com'",
"required": false
},
"G_DRIVE_PARENT_ID": {
"description": "GDrive Folder ID",
"required": false
},
"LOG_CHANNEL_ID": {
"description": "Telegram Log Channel ID",
"required": false
},
"HEROKU_APP_NAME": {
"description": "given app name to the heroku app",
"required": false
},
"HEROKU_API_KEY": {
"description": "get a Heroku API key from http://dashboard.heroku.com/account",
"required": false
},
"UPSTREAM_REPO": {
"description": "set this to your USERGE fork on GitHub",
"required": false
}
},
"addons": [
],
"buildpacks": [
{
"url": "https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest.git"
}, {
"url": "https://github.com/heroku/heroku-buildpack-apt.git"
}, {
"url": "heroku/python"
}
],
"formation": {
"worker": {
"quantity": 1,
"size": "free"
}
}
}