-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp.json
More file actions
26 lines (26 loc) · 858 Bytes
/
app.json
File metadata and controls
26 lines (26 loc) · 858 Bytes
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
{
"name": "Vonage API platform connector to Amazon Comprehend",
"description": "This connector allows transcriptions created from Vonage connectors to be sentiment analyzed by AWS Comprehend",
"keywords": ["comprehend", "sentiment analysis", "python", "amazon web services", "vonage"],
"repository": "https://github.com/nexmo-community/aws-comprehend",
"env":{
"AWS_ACCESS_KEY_ID": {
"description": "Retrieved from your security credentials on AWS console",
"required": true
},
"AWS_SECRET_ACCESS_KEY": {
"description": "From when you created the access key",
"required": true
},
"AWS_DEFAULT_REGION": {
"description": "Your AWS services default region",
"value": "us-east-1",
"required": true
}
},
"buildpacks": [
{
"url": "heroku/python"
}
]
}