forked from sarveshpro/n8n-heroku
-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
57 lines (56 loc) · 1.61 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
{
"name": "n8n",
"description": "deploy n8n to heroku without any hassle",
"keywords": [
"n8n",
"node",
"automation"
],
"website": "https://n8n.io",
"repository": "https://github.com/sarveshwarge/n8n-heroku",
"logo": "https://raw.githubusercontent.com/n8n-io/n8n/master/docs/images/n8n-logo.png",
"success_url": "/",
"stack": "container",
"env": {
"N8N_BASIC_AUTH_ACTIVE": {
"description": "Protect n8n setup with basic authentication.",
"value": "true"
},
"GENERIC_TIMEZONE": {
"description": "Time Zone to use with Heroku. You can find the name of your timezone here: https://momentjs.com/timezone/",
"value": "Europe/Berlin"
},
"N8N_BASIC_AUTH_USER": {
"description": "Basic Authentication User for n8n",
"value": "user"
},
"N8N_BASIC_AUTH_PASSWORD": {
"description": "Basic Authentication Password to secure n8n.",
"value": "pass"
},
"WEBHOOK_TUNNEL_URL" :{
"description": "url adderess to oauth authtition,mostly 'https://{YOUR APP NAME}.herokuapp.com/'",
"value": "url"
},
"N8N_ENCRYPTION_KEY":{
"description": "any random string to work as encryptation key",
"value": "eq4iocthjxm95wp45yw45aerjptgmp985w4cp9tgwrbv54cy7vbew"
},
"formation": {
"web": {
"quantity": 1,
"size": "free"
}
},
"addons": [
{
"plan": "heroku-postgresql",
"options": {
"version": "11"
}
},
{
"plan": "papertrail:choklad"
}
]
}