-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
53 lines (53 loc) · 1.21 KB
/
app.json
File metadata and controls
53 lines (53 loc) · 1.21 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
{
"name": "TG File links/Sharing Bot",
"description": "link sharing bot. you can share you private links",
"keywords": [
"telegram",
"links",
"sharing"
],
"repository": "https://github.com/Sahil0976/Links-Sharing",
"logo": "https://ibb.co/FgPVtzw",
"env": {
"TG_BOT_TOKEN": {
"description": "Your Bot token, Get it from @Botfather",
"value": ""
},
"OWNER_ID": {
"description": "An integer of consisting of your owner ID",
"value": ""
},
"APP_ID":{
"description": "your app id, take it from my.telegram.org",
"value": ""
},
"DATABASE_URL": {
"description": "Paste your mongo db url",
"value": "url"
},
"DATABASE_NAME":{
"description": "Enter your DATABASE_NAME ",
"value": "linkssharing"
},
"API_HASH":{
"description": "your api hash, take it from my.telegram.org",
"value": ""
},
"ADMINS": {
"description": "A space separated list of user_ids of Admins, they can only create links",
"value": "",
"required": false
}
},
"buildpacks": [
{
"url": "heroku/python"
}
],
"formation": {
"worker": {
"quantity": 1,
"size": "basic"
}
}
}