-
Notifications
You must be signed in to change notification settings - Fork 2
/
app.json
62 lines (62 loc) · 1.8 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
53
54
55
56
57
58
59
60
61
62
{
"name": "SF Sign-In",
"description": "Sign-in sheet. Not a sheet.",
"website": "https://www.socialfinance.org.uk/",
"repository": "https://github.com/SocialFinanceDigitalLabs/building-register",
"scripts": {
"postdeploy": "python manage.py migrate"
},
"env": {
"DJANGO_ENV": {
"description": "Deploy with production configuration",
"value": "production"
},
"DISABLE_POETRY_CREATE_RUNTIME_FILE": {
"description": "We specify the exact runtime in runtime.txt so we don't want the buildpack to create it",
"value": 1
},
"DJANGO_SECRET_KEY": {
"description": "A secret key for verifying the integrity of signed cookies.",
"generator": "secret"
},
"TWILIO_ACCOUNT_SID": {
"description": "For Twilio SMS, set the account SID",
"required": false
},
"TWILIO_AUTH_TOKEN": {
"description": "For Twilio SMS, set the account token",
"required": false
},
"O365_TENANT_ID": {
"description": "For Office 365 Graph API Email Sending, provide the O365 Tenant ID",
"required": false
},
"O365_CLIENT_ID": {
"description": "For Office 365 Graph API Email Sending, provide the Azure Application Client ID",
"required": false
},
"O365_CLIENT_SECRET": {
"description": "For Office 365 Graph API Email Sending, provide the Azure Application Client Secret",
"required": false
},
"O365_EMAIL_SENDER": {
"description": "For Office 365 Graph API Email Sending, provide a valid account email to send from",
"required": false
}
},
"addons": [
"heroku-postgresql"
],
"environments": {
"review": {
}
},
"buildpacks": [
{
"url": "https://github.com/moneymeets/python-poetry-buildpack.git"
},
{
"url": "heroku/python"
}
]
}