-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
38 lines (38 loc) · 1.13 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
31
32
33
34
35
36
37
38
{
"name": "Oraaange",
"repository": "https://github.com/osminogin/oraaange",
"keywords": ["django", "geo-dating", "geolocation", "openapi", "python"],
"addons": [
"heroku-postgresql:hobby-dev",
"cloudamqp:lemur"
],
"buildpacks": [
{"url": "https://github.com/heroku/heroku-buildpack-apt"},
{"url": "https://github.com/heroku/heroku-geo-buildpack"},
{"url": "heroku/python"}
],
"formation": {
"web": {"quantity": 1, "size": "free"},
"worker": {"quantity": 1, "size": "free"}
},
"env": {
"DEBUG": "False",
"SECRET_KEY": {
"description": "A secret key for a particular installation.",
"generator": "secret"
},
"AWS_ACCESS_KEY_ID": "Q3AM3UQ867SPQQA43P2F",
"AWS_SECRET_ACCESS_KEY": "zuf+tfteSlswRu7BJ86wekitnifILbZam1KYY3TG",
"AWS_STORAGE_BUCKET_NAME": "oraaange-files",
"AWS_AUTO_CREATE_BUCKET": "True",
"AWS_S3_ENDPOINT_URL": "https://play.min.io:9000",
"WEB_CONCURRENCY": {
"description": "The number of web processes.",
"value": "4"
},
"WORKER_PROCESSES": {
"description": "The number of workers to run.",
"value": "1"
}
}
}