-
Notifications
You must be signed in to change notification settings - Fork 2
/
app.json
28 lines (28 loc) · 950 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": "data.world OAuth Connector",
"description": "A one button deploy to Heroku application to be used for OAuth purposes",
"repository": "https://github.com/dataworld/connector-oauth",
"keywords": ["oauth", "connector"],
"env": {
"AUTHORIZATION_ENDPOINT": {
"description": "The data.world authorization endpoint",
"value": "https://data.world"
},
"CLIENT_ID": {
"description": "The data.world client id",
"value": "REPLACE_ME"
},
"CLIENT_SECRET": {
"description": "The data.world client secret",
"value": "REPLACE_ME"
},
"REDIRECT_URI": {
"description": "The data.world client redirect uri, which should match the location of this server",
"value": "REPLACE_ME"
},
"CONNECTOR_REDIRECT": {
"description": "The location of the connector to redirect to after successful authentication",
"value": "http://tableau.data.world"
}
}
}