-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
35 lines (35 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
{
"name": "Osso Rails Example",
"description": "Example Rails app for integrating Osso for SAML SSO",
"keywords": [
"SAML",
"SSO",
"Osso",
"Rails"
],
"logo": "https://www.ossoapp.com/img/logo.svg",
"repository": "https://github.com/enterprise-oss/osso-rails-example",
"website": "https://ossoapp.com",
"addons": [],
"env": {
"SESSION_SECRET": {
"description": "A secret key for verifying the integrity of signed cookies.",
"generator": "secret"
},
"OSSO_CLIENT_ID": {
"description": "OAuth client ID for Osso",
"value": "demo-client-id"
},
"OSSO_CLIENT_SECRET": {
"description": "OAuth client SECRET for Osso",
"value": "demo-client-secret"
},
"OSSO_REDIRECT_URI": {
"description": "Redirect URI where Osso sends users - YOU MUST replace APP-NAME with the name of this application as input above",
"value": "https://APP-NAME.herokuapp.com/users/auth/osso/callback"
}
},
"scripts": {
"postdeploy": "bundle exec rake db:migrate"
}
}