-
Notifications
You must be signed in to change notification settings - Fork 4
/
app.json
36 lines (36 loc) · 1.09 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
{
"name": "Checkr OAuth Reference Integration",
"description": "Sample application demonstrating an end to end Checkr integration",
"buildpacks": [
{
"url": "heroku/nodejs"
}
],
"env": {
"CHECKR_API_URL": {
"description": "Checkr's API domain",
"required": true,
"value": "https://api.checkr-staging.com"
},
"REACT_APP_CHECKR_PARTNER_URL": {
"description": "Partner application host",
"required": true,
"value": "https://partners.checkrhq-staging.net"
},
"CHECKR_OAUTH_CLIENT_ID": {
"description": "Your partner application client id",
"required": true
},
"CHECKR_OAUTH_CLIENT_SECRET": {
"description": "Your partner application client secret",
"required": true
},
"ENCRYPTION_SECRET_KEY": {
"description": "Encryption key to be used for storing secrets",
"required": true,
"value": "65520b062cff37a7b7632d0da163025dc39b17497bb16de6c42c3820da88c825"
}
},
"keywords": ["node", "express", "static"],
"repository": "https://github.com/checkr/oauth-reference-integration"
}