-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
57 lines (56 loc) · 1.57 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
{
"name": "Kustosz",
"description": "Focus on the worthwhile content with Kustosz, open source self-hosted web application. This version is designed to run on Heroku free plan.",
"keywords": [
"rss",
"atom",
"reader",
"django",
"python",
"vue.js"
],
"website": "https://www.kustosz.org/",
"repository": "https://github.com/KustoszApp/kustosz-heroku",
"logo": "https://www.kustosz.org/kustosz_logo.svg",
"success_url": "/ui/",
"env": {
"KUSTOSZ_USERNAME": {
"description": "Name that you will use to log in",
"value": "admin"
},
"KUSTOSZ_PASSWORD": {
"description": "Password that you will use to log in"
},
"DYNACONF_SECRET_KEY": {
"description": "A secret key for verifying the integrity of signed cookies.",
"generator": "secret"
},
"DYNACONF_ALLOWED_HOSTS": {
"description": "Put your app name here. If you plan to access Kustosz under custom domain, put it after comma.",
"value": "[\"my_heroku_app_name.herokuapp.com\"]"
},
"ENV_FOR_DYNACONF": {
"value": "production"
}
},
"formation": [
{
"process": "web",
"quantity": 1,
"size": "free"
}
],
"addons": [
{
"plan": "heroku-postgresql:hobby-dev"
}
],
"buildpacks": [
{
"url": "heroku/nodejs"
},
{
"url": "heroku/python"
}
]
}