-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathapp.json
More file actions
23 lines (23 loc) · 777 Bytes
/
app.json
File metadata and controls
23 lines (23 loc) · 777 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "results-example",
"env": {
"TYPEFORM_API_BASE_URL": {
"required": true,
"value": "https://api.typeform.com",
"description": "An entry point for the Typeform services (OAuth + API)"
},
"APPLICATION_URL": {
"required": true,
"value": "https://<your_app_name>.herokuapp.com",
"description": "Application URL which will be used to construct a callback URL for OAuth mechanism"
},
"CLIENT_ID": {
"required": true,
"description": "The Client ID you've got from Typeform"
},
"CLIENT_SECRET": {
"required": true,
"description": "The Client Secret you've got from Typeform"
}
}
}