-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathapp.json
More file actions
30 lines (30 loc) · 750 Bytes
/
app.json
File metadata and controls
30 lines (30 loc) · 750 Bytes
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
{
"name": "EyeDP",
"description": "Single sign on identity provider.",
"website": "https://github.com/centaurisolutions/eyedp",
"repository": "https://github.com/centaurisolutions/eyedp",
"buildpacks": [
{
"url": "heroku/nodejs"
},
{
"url": "heroku/ruby"
}
],
"env": {
"SEED_USERNAME": "admin",
"SEED_PASSWORD": "password1234",
"SEED_EMAIL": "admin@example.com",
"SSO_DOMAIN": ".example.com",
"SECRET_KEY_BASE": {
"generator": "secret"
}
},
"scripts": {
"postdeploy": "bundle exec rake db:migrate db:seed"
},
"addons": [
"heroku-postgresql",
"heroku-redis"],
"success_url": "/"
}