generated from yunojuno/poetry-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
52 lines (52 loc) · 1.42 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
44
45
46
47
48
49
50
51
52
{
"name": "Django SAML Demo",
"description": "Demo app for SAML authentication with Django",
"scripts": {
"postdeploy": "python manage.py migrate"
},
"buildpacks": [
{
"url": "https://buildpack-registry.s3.amazonaws.com/buildpacks/heroku-community/apt.tgz"
},
{
"url": "heroku/python"
}
],
"env": {
"DJANGO_SETTINGS_MODULE": {
"description": "Location of the settings (fixed)",
"value": "demo.settings.heroku",
"required": true
},
"DJANGO_SECRET_KEY": {
"description": "Used as the Django secret key.",
"generator": "secret"
},
"WEB_CONCURRENCY": {
"description": "The number of processes to run.",
"value": "1"
},
"SAML_SP_PUBLIC_CERT":{
"description": "The public certificate of the service provider."
},
"SAML_SP_PRIVATE_KEY":{
"description": "The private key of the service provider."
},
"SAML_SP_ENTITY_ID": {
"description": "The entity ID of the service provider.",
"required": true
}
},
"formation": {
"web": {
"quantity": 1,
"size": "standard-1x"
}
},
"addons": [
{
"plan": "heroku-postgresql:hobby-dev",
"as": "DATABASE"
}
]
}