-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
60 lines (59 loc) · 1.25 KB
/
app.json
File metadata and controls
60 lines (59 loc) · 1.25 KB
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
{
"name": "n8n Workflow Automation",
"description": "n8n workflow automation platform",
"repository": "https://github.com/n8n-io/n8n",
"logo": "https://raw.githubusercontent.com/n8n-io/n8n/master/packages/design-system/src/assets/images/n8n-logo.png",
"keywords": ["n8n", "workflow", "automation"],
"success_url": "/",
"formation": {
"web": {
"quantity": 1,
"size": "basic"
}
},
"addons": [
{
"plan": "heroku-postgresql:essential-0"
}
],
"env": {
"N8N_DATABASE_TYPE": {
"value": "postgresdb",
"required": true
},
"N8N_BASIC_AUTH_ACTIVE": {
"value": "true",
"required": true
},
"N8N_BASIC_AUTH_USER": {
"value": "admin",
"required": true
},
"N8N_BASIC_AUTH_PASSWORD": {
"description": "Password for n8n basic authentication",
"required": true,
"generator": "secret"
},
"TZ": {
"value": "America/Chicago",
"required": false
},
"N8N_HOST": {
"value": "0.0.0.0",
"required": false
},
"N8N_PORT": {
"value": "$PORT",
"required": false
},
"N8N_PROTOCOL": {
"value": "https",
"required": false
}
},
"buildpacks": [
{
"url": "heroku/nodejs"
}
]
}