-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
43 lines (43 loc) · 1.04 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
39
40
41
42
43
{
"name": "CS Demand Model Regional",
"keywords": [
"Social Finance",
"Demand Model",
"Children Services"
],
"repository": "https://github.com/SocialFinanceDigitalLabs/cs-demand-model-regional",
"success_url": "/",
"env": {
"DJANGO_SECRET_KEY": {
"description": "The Django SECRET_KEY - do not share this value",
"generator": "secret"
},
"DISABLE_POETRY_CREATE_RUNTIME_FILE": {
"description": "We provide a specific python version in runtime.txt.",
"value": "1"
},
"POETRY_VERSION": {
"description": "poetry version",
"required": true,
"value": "1.2.2"
}
},
"formation": {
"worker": {
"quantity": 1
},
"web": {
"quantity": 1
}
},
"addons": ["heroku-postgresql"],
"buildpacks": [
{
"url": "https://github.com/SocialFinanceDigitalLabs/python-poetry-buildpack.git"
},
{
"url": "heroku/python"
}
],
"stack": "heroku-22"
}