-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathapp.json
More file actions
44 lines (44 loc) · 1.39 KB
/
app.json
File metadata and controls
44 lines (44 loc) · 1.39 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
{
"name": "Layer Identity Provider",
"description": "Basic identity provider to handle authentication with Layer",
"website": "https://docs.layer.com/",
"env": {
"LAYER_KEY_ID": {
"description": "Your Layer key ID, which can be found in the 'Authentication Keys' section on the Keys page of the Layer Developer Dashboard",
"required": true
},
"LAYER_PROVIDER_ID": {
"description": "Your Layer Provider ID, which can be found in the 'Provider ID' section of the Keys page of the Layer Developer Dashboard",
"required": true
},
"LAYER_PRIVATE_KEY": {
"description": "Contents of your RSA private key, generated on the Instastart page or from the Keys page of the Layer Developer Dashboard",
"required": true
},
"LAYER_APP_ID": {
"description": "Your Layer app ID, which can be found in the 'Keys' section of the Layer Developer Dashboard",
"required": true
},
"LAYER_SERVER_API_TOKEN": {
"description": "Your Layer Server API Bearer token, which can be found in the 'Server API' section of the Layer Developer Dashboard",
"required": true
}
},
"scripts": {
"postdeploy": "bundle exec rake db:migrate"
},
"formation": {
"web": {
"quantity": 1,
"size": "free"
}
},
"addons": [
{
"plan": "heroku-postgresql",
"options": {
"version": "9.5"
}
}
]
}