-
Notifications
You must be signed in to change notification settings - Fork 59
/
app.json
87 lines (87 loc) · 2.41 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
{
"name": "nazurin",
"description": "Images collection done right.",
"keywords": ["nazurin", "Telegram Bot", "Pixiv", "Danbooru", "Moebooru"],
"repository": "https://github.com/y-young/nazurin",
"env": {
"TOKEN": {
"description": "API token of Telegram bot."
},
"WEBHOOK_URL": {
"description": "Webhook URL. eg: https://xxx.herokuapp.com/"
},
"STORAGE": {
"description": "Type of storage, separated by a comma. Don't use local storage on Heroku.",
"value": "Mega",
"required": false
},
"DATABASE": {
"description": "Type of database. Don't use local database on Heroku.",
"value": "Firebase",
"required": false
},
"ADMIN_ID": {
"description": "ID of admin user",
"required": true
},
"ALBUM_ID": {
"description": "ID of Telegram album channel.",
"required": false
},
"GALLERY_ID": {
"description": "ID of Telegram gallery channel."
},
"STORAGE_DIR": {
"description": "Storage directory.",
"required": false
},
"IS_PUBLIC": {
"description": "Whether this bot is public, default is false.",
"required": false
},
"ALLOW_ID": {
"description": "ID of allowed user(s), separated by a comma.",
"required": false
},
"ALLOW_USERNAME": {
"description": "Username of allowed user(s), separated by a comma.",
"required": false
},
"ALLOW_GROUP": {
"description": "ID of allowed group(s), separated by a comma.",
"required": false
},
"PIXIV_TOKEN": {
"description": "Pixiv refresh token. See more information at https://nazurin.readthedocs.io/site/pixiv/ .",
"required": false
},
"WALLHAVEN_API_KEY": {
"description": "Wallhaven API key. See more information at https://nazurin.readthedocs.io/site/wallhaven/ .",
"required": false
},
"MEGA_USER": {
"description": "MEGA login email.",
"required": false
},
"MEGA_PASS": {
"description": "MEGA password.",
"required": false
},
"MONGO_URI": {
"description": "MongoDB connection string.",
"required": false
},
"GOOGLE_APPLICATION_CREDENTIALS": {
"description": "Firebase SDK credentials.",
"required": false
}
},
"buildpacks": [
{
"url": "https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest"
},
{
"url": "heroku/python"
}
]
}