-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathapp.json
More file actions
60 lines (60 loc) · 1.11 KB
/
app.json
File metadata and controls
60 lines (60 loc) · 1.11 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
60
{
"name": "phoenix-next",
"description": ":sparkles:",
"scripts": {
"postdeploy": "sh bootstrap/setup.sh"
},
"env": {
"APP_DEBUG": "true",
"NPM_CONFIG_PRODUCTION": "false",
"APP_KEY": {
"required": true
},
"APP_LOG": "errorlog",
"CONTENTFUL_CONTENT_DELIVERY_API_KEY": {
"required": true
},
"CONTENTFUL_CONTENT_PREVIEW_API_KEY": {
"required": true
},
"CONTENTFUL_SPACE_ID": {
"required": true
},
"NORTHSTAR_AUTHORIZATION_ID": {
"required": true
},
"NORTHSTAR_AUTHORIZATION_SECRET": {
"required": true
},
"NORTHSTAR_CLIENT_ID": {
"required": true
},
"NORTHSTAR_CLIENT_SECRET": {
"required": true
},
"NORTHSTAR_URL": {
"required": true
},
"PHOENIX_LEGACY_URL": {
"required": true
},
"PHOENIX_LEGACY_USERNAME": {
"required": true
},
"PHOENIX_LEGACY_PASSWORD": {
"required": true
}
},
"formation": {},
"addons": [
"cleardb"
],
"buildpacks": [
{
"url": "heroku/php"
},
{
"url": "heroku/nodejs"
}
]
}