-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
30 lines (30 loc) · 1.06 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
{
"name": "Artbiogs",
"description": "A web application that uses AI/ML to detect Artist's Exhibition details from a CV.",
"repository": "https://github.com/skdcodes/Artist-CV-Parser.Python_Flask_AWS-Textract_AWS-Comprehend.Web.Freelancer",
"buildpacks": [
{ "url": "heroku/python" },
{
"url": "https://github.com/heroku/heroku-buildpack-google-chrome.git"
},
{ "url": "https://github.com/dscout/wkhtmltopdf-buildpack.git" }
],
"env": {
"WKHTMLTOPDF_PATH": {
"description": "Default location of WKHTMLTOPDF binary. DO NOT MODIFY!",
"value": "/app/bin/wkhtmltopdf"
},
"AWS_ACCESS_KEY_ID": {
"description": "Your AWS Access Key ID. This key must have full access to S3, Textract and Comprehend."
},
"AWS_SECRET_ACCESS_KEY": {
"description": "Your AWS Secret Access Key."
},
"AWS_BUCKET_NAME": {
"description": "Your AWS Bucket Name. This bucket will be used to save uploaded and parsed static files."
},
"AWS_REGION_NAME": {
"description": "The AWS Bucket location."
}
}
}