-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
72 lines (72 loc) · 2.48 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
{
"name": "Reddit Save Video Bot",
"description": "You saw an excellent video and want to download it, this bot for you.",
"logo": "https://user-images.githubusercontent.com/29407019/111668072-6b951800-8826-11eb-9f77-7ace7ecd866e.png",
"repository": "https://github.com/KGBTR/Reddit-Save-Bot",
"keywords": ["python", "reddit", "bot", "save", "video", "downloader"],
"buildpacks": [
{
"url": "heroku/python"
},
{
"url": "https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest"
}
],
"env": {
"LOG_LEVEL": {
"required": false,
"value": "INFO",
"description": "For logging level. Default is INFO"
},
"PY_ENV": {
"required": true,
"value": "production",
"description": "It controls the production and development situations. The default is development. But set as production."
},
"FFMPEG_DIR": {
"required": true,
"value": "ffmpeg",
"description": "FFMPEG location. The default is ffmpeg."
},
"SENTRY_USE": {
"required": true,
"value": "False",
"description": "If you use Sentry issue tracker you must set True or true or 1. Else you must set False or false or 0. Default is False"
},
"SENTRY_DSN": {
"required": false,
"description": "SENTRY URI like a https://9wPPEr9Sz4JT1BHYtKm1n115y3VPz6cJVdzInChn.ingest.sentry.io/Gvu9hoO. Default is empty string",
"value": ""
},
"SENTRY_TRACES_SAMPLE_RATE": {
"required": false,
"description": "Sentry tracing sample rate. Value between 0.0 to 1.0. Default is 1.0",
"value": "1.0"
},
"useragent": {
"required": true,
"description": "Reddit bot useragent like u/BotName:V1.0 by u/CreatorName. Default is filler string",
"value": "u/BotName:V1.0 by u/CreatorName"
},
"client_id": {
"required": true,
"description": "Reddit bot client id like bbIBQSrpKHpWJy. Default is filler string",
"value": ""
},
"client_secret": {
"required": true,
"description": "Reddit bot client secret like ybYajpectYCbdLecIOmSEOUzedR. Default is filler string",
"value": ""
},
"bot_username": {
"required": true,
"description": "Reddit bot username like BotUsername. Shouldn't contain u/. Default is filler username",
"value": ""
},
"bot_pass": {
"required": true,
"description": "Reddit bot password like WAYiCAGhCasWTiSslawKQiXdZzPHshwigWWD. Default is filler password",
"value": ""
}
}
}