-
Notifications
You must be signed in to change notification settings - Fork 159
/
app.json
43 lines (43 loc) · 1.38 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
{
"name": "n8n",
"description": "deploy n8n to heroku without any hassle",
"keywords": [
"n8n",
"node",
"automation"
],
"website": "https://n8n.io",
"repository": "https://github.com/n8n-io/n8n-heroku",
"logo": "https://raw.githubusercontent.com/n8n-io/n8n-heroku/main/n8n_logo.png",
"success_url": "/",
"stack": "container",
"env": {
"GENERIC_TIMEZONE": {
"description": "Time Zone to use with Heroku. You can find the name of your timezone for example here: https://momentjs.com/timezone/.",
"value": "Europe/Berlin"
},
"N8N_ENCRYPTION_KEY": {
"description": "Set the n8n encryption key to a static value to avoid Heroku overriding it (causing authentication to fail).",
"value": "change-me-to-something-else"
},
"WEBHOOK_URL": {
"description": "Replace <appname> with your Heroku application name. This will ensure the correct webhook URLs are being shown in n8n.",
"value": "https://<appname>.herokuapp.com"
},
"DB_POSTGRESDB_SSL_REJECT_UNAUTHORIZED": {
"description": "SSL is required to connect to Postgres on Heroku",
"value": "false"
}
},
"addons": [
{
"plan": "heroku-postgresql",
"options": {
"version": "14"
}
},
{
"plan": "papertrail:choklad"
}
]
}