forked from SafeTrek/safetrek-node-bootstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
28 lines (28 loc) · 969 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
{
"name": "SafeTrek Node Bootstrap",
"description": "A bootstrap project to quickly get you started with the SafeTrek API using NodeJS.",
"logo": "https://www.dropbox.com/s/q2m61cpfm5w0cm4/safetrek-app-icon.png?raw=1",
"keywords": [
"safetrek",
"oauth",
"nodejs",
"heroku",
"bootstrap"
],
"website": "https://developers.safetrek.io/",
"repository": "https://github.com/SafeTrek/safetrek-node-bootstrap",
"env": {
"CLIENT_ID": {
"description": "The client id for your application provided to you by SafeTrek",
"required": true
},
"CLIENT_SECRET": {
"description": "The client secret for your application provided to you by SafeTrek",
"required": true
},
"REDIRECT_URL": {
"description": "The URL you want to redirect to after retrieving your 'access_token' and 'refresh_token'. Leave blank if you're not sure or want to use the Demo redirect URL.",
"required": false
}
}
}