This repository has been archived by the owner on Jun 6, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
50 lines (50 loc) · 1.72 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
48
49
50
{
"name": "Keratin AuthN",
"description": "Authentication service that keeps you in control of the experience without forcing you to be an expert in web security.",
"website": "https://github.com/keratin/authn",
"logo": "https://avatars3.githubusercontent.com/u/23507480?v=3&s=200",
"env": {
"AUTHN_URL": {
"description": "The full URL for this AuthN service, e.g. https://yourapp-authn.herokuapp.com"
},
"APP_DOMAINS": {
"description": "The application you will integrate with this AuthN service, e.g. 'yourapp.herokuapp.com'"
},
"HTTP_AUTH_USERNAME": {
"description": "The HTTP Basic Auth username your application will send for secured back-channel communications."
},
"HTTP_AUTH_PASSWORD": {
"description": "The HTTP Basic Auth password your application will send for secured back-channel communications."
},
"USERNAME_IS_EMAIL": {
"description": "Whether usernames must validate as emails (true) or not (false).",
"required": false,
"value": "false"
},
"PASSWORD_POLICY_SCORE": {
"description": "How complex a password must be to validate, on a scale of 0 (insecure) to 5 (very unguessable).",
"required": false,
"value": "2"
},
"SECRET_KEY_BASE": {
"description": "Key used to securely sign AuthN session cookies",
"generator": "secret"
},
"BUNDLE_WITHOUT": {
"description": "Disable SQLite3 and MySQL drivers for Heroku install",
"value": "development:test:sqlite3:mysql"
}
},
"addons": [
"heroku-postgresql:hobby-dev",
"heroku-redis:hobby-dev"
],
"buildpacks": [
{
"url": "heroku/ruby"
}
],
"scripts": {
"postdeploy": "bundle exec rake db:migrate"
}
}