-
Notifications
You must be signed in to change notification settings - Fork 118
/
Copy pathapp.json
88 lines (88 loc) · 2.7 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
{
"name": "Torrenthunt",
"description": "Torrenthunt",
"stack": "container",
"keywords": [
"auto-filter",
"filter",
"best",
"inline"
],
"website": "https://github.com/hemantapkh/TorrentHunt",
"repository": "https://github.com/hemantapkh/TorrentHunt",
"env": {
"BOT_TOKEN": {
"description": "Bot token, get it from https://t.me/botfather",
"value": "",
"required": true
},
"API_ID": {
"description": "Get the value from https://my.telegram.org",
"value": "",
"required": true
},
"API_HASH": {
"description": "Get the value from https://my.telegram.org",
"value": "",
"required": true
},
"BOT_NAME": {
"description": "Bot Name",
"value": "Torrent Hunt Clone",
"required": true
},
"BOT_ADMINS": {
"description": "Admins of bot",
"value": "User ID of bot admins separated by a comma",
"required": false
},
"DATABASE_URL": {
"description": "Database connection string",
"value": "sqlite:///torrenthunt.db",
"required": true
},
"TORRENTHUNT_API_URL": {
"description": "URL of Torrent Hunt API",
"value": "https://torrenthunt.p.rapidapi.com",
"required": true
},
"TORRENTHUNT_API_KEY": {
"description": "Get your key from https://rapidapi.com/hemantapkh/api/torrenthunt",
"value": "",
"required": true
},
"SENTRY_DSN": {
"description": "Sentry.io token for error tracking",
"value": "",
"required": true
},
"ENVIRONMENT": {
"description": "Type of app environment i.e local or production",
"value": "production",
"required": false
},
"START_ADS": {
"description": "Send message from a channel to a user when they start the bot",
"value": "false",
"required": false
},
"START_ADS_CHANNEL": {
"description": "Username of the channel to send the message from",
"value": "",
"required": false
},
"START_ADS_MESSAGE": {
"description": "ID of the message to send",
"value": "",
"required": false
},
"WORKDIR": {
"description": "Directory where the session, logs and other info will be saved",
"value": ".",
"required": false
}
},
"buildpacks": [{
"url": "heroku/python"
}]
}