-
Notifications
You must be signed in to change notification settings - Fork 63
/
app.json
33 lines (33 loc) · 981 Bytes
/
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
{
"name": "Vue Sample Applications for Okta",
"description": "Sample applications that demonstrate various Okta use-cases in your Vue application.",
"repository": "https://github.com/okta/samples-js-vue",
"keywords": ["oidc", "identity", "security", "authentication"],
"success_url": "/",
"env": {
"ISSUER": {
"description": "Issuer URL for your org",
"value": "https://{yourDomain}/oauth2/default"
},
"CLIENT_ID": {
"description": "Client ID for your application",
"value": "CLIENT_ID"
},
"NPM_CONFIG_PRODUCTION": {
"description": "npm config production",
"value": "false"
},
"OKTA_TESTING_DISABLEHTTPSCHECK": {
"description": "Okta test disable https check",
"value": "false"
},
"USE_INTERACTION_CODE": {
"description": "Use interaction code flow",
"value": "true"
},
"YARN_PRODUCTION": {
"description": "Yarn production",
"value": "false"
}
}
}