-
-
Notifications
You must be signed in to change notification settings - Fork 63
/
app.json
62 lines (62 loc) · 3.2 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
{
"name": "Commento",
"description": "A fast, privacy-focused commenting platform.",
"repository": "https://gitlab.com/commento/commento",
"logo": "https://cdn.commento.io/images/logo.svg",
"website": "https://commento.io",
"keywords": ["goalang", "commento", "privacy"],
"stack": "container",
"addons": [
{
"plan": "heroku-postgresql"
},
{
"plan": "papertrail:choklad"
}
],
"success_url": "/login",
"env": {
"COMMENTO_ORIGIN": {
"description": "This should be set to the subdomain or the IP address hosting Commento. All API requests will go to this server. This may include subdirectories if Commento is hosted behind a reverse proxy, for example. Include the protocol in the value to use HTTP/HTTPS."
},
"COMMENTO_FORBID_NEW_OWNERS": {
"description": "Used to disable new dashboard registrations. Useful if you are the only person using Commento on your server. Does not impact the creation of accounts for your readers. Defaults to false.",
"value": "false"
},
"COMMENTO_SMTP_FROM_ADDRESS": {
"description": "SMTP credentials and configuration the server should use to send emails. By default, all settings are empty and email features such as email notification and reset password are turned off.",
"required": false
},
"COMMENTO_SMTP_HOST": {
"description": "SMTP credentials and configuration the server should use to send emails. By default, all settings are empty and email features such as email notification and reset password are turned off.",
"required": false
},
"COMMENTO_SMTP_PASSWORD": {
"description": "SMTP credentials and configuration the server should use to send emails. By default, all settings are empty and email features such as email notification and reset password are turned off.",
"required": false
},
"COMMENTO_SMTP_PORT": {
"description": "SMTP credentials and configuration the server should use to send emails. By default, all settings are empty and email features such as email notification and reset password are turned off.",
"required": false
},
"COMMENTO_SMTP_USERNAME": {
"description": "SMTP credentials and configuration the server should use to send emails. By default, all settings are empty and email features such as email notification and reset password are turned off.",
"required": false
},
"COMMENTO_ENABLE_LOGGING": {
"description": "Should we log every page view? This will allow you to see stats but will fill up your free postgres database quite quickly, so defaults to false. Set to true to enable",
"required": false,
"value": "false"
},
"COMMENTO_ENABLE_WILDCARDS": {
"description": "Allows use of wildcards in domain names in the admin dashboard, defaults to true. Set to false to disable (e.g. if you share your commento instance with more than one admin/allow new registrations)",
"required": false,
"value": "true"
},
"COMMENTO_SMTP_SKIP_HOST_VERIFY": {
"description": "Allows skipping of host verification for SMTP email sending, defaults to false. Set to true to enable (e.g. for the Cloudron app package)",
"required": false,
"value": "false"
}
}
}