forked from heroku/sudo-sandwich
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
47 lines (47 loc) · 1.03 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
{
"name": "Sudo Sandwich",
"description": "Example Heroku add-on built with Rails.",
"repository": "https://github.com/heroku/sudo-sandwich",
"formation": {
"web": {
"quantity": 1,
"size": "free"
},
"worker": {
"quantity": 1,
"size": "free"
}
},
"buildpacks": [
{
"url": "heroku/ruby"
}
],
"env": {
"SLUG":{
"description": "Slug for add-on. Must match 'id' value in addon-manifest.json",
"required": true
},
"PASSWORD":{
"description": "Password for basic auth. Must match 'password' value in addon-manifest.json",
"required": true
},
"ENCRYPTION_KEY":{
"description": "Encryption key for attr_encrypted attributes",
"required": true,
"generator": "secret"
},
"SSO_SALT":{
"description": "Salt for SSO. Must match 'sso_salt' value in addon-manifest.json",
"required": true
}
},
"addons": [
{
"plan": "heroku-postgresql",
"options": {
"version": "9.5"
}
}
]
}