This repository has been archived by the owner on Nov 9, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathapp.json
52 lines (52 loc) · 1.57 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
51
52
{
"name": "Auth0 SSO Dashboard",
"description": "Single sign on dashboard for all your apps.",
"logo": "https://cloudup.com/cJPd33l_Stj+",
"repository": "https://github.com/auth0/auth0-sso-dashboard",
"keywords": [
"auth0",
"node",
"security",
"sso"
],
"env": {
"SITE_TITLE": {
"description": "The name of this dashboard",
"required": true,
"value": "Company Dashboard"
},
"AUTH0_CLIENT_ID": {
"description": "The Auth0 client ID.",
"required": true
},
"AUTH0_CLIENT_SECRET": {
"description": "The Auth0 client secret.",
"required": true
},
"AUTH0_DOMAIN": {
"description": "The Auth0 domain",
"required": true,
"value": "youraccount.auth0.com"
},
"AUTH0_CONNECTION": {
"description": "The Auth0 connection that you will use to authenticate with this dashboard",
"required": true
},
"AUTH0_API_TOKEN": {
"description": "The token for Auth0 APIv2. The following scopes are required: `read:users`, `read:users_app_metadata`, `update:users_app_metadata`, `create:users_app_metadata`, `delete:users_app_metadata`, and `read:clients`.",
"required": true
},
"AWS_ACCESS_KEY_ID": {
"description": "The AWS Access Key Id with read/write access to an S3 bucket",
"required": true
},
"AWS_SECRET_ACCESS_KEY": {
"description": "The AWS secrete access key",
"required": true
},
"AWS_S3_BUCKET": {
"description": "The AWS S3 bucket name used to store this app's data",
"required": true
}
}
}