-
Notifications
You must be signed in to change notification settings - Fork 35
/
app.json
94 lines (94 loc) · 2.82 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "Metecho",
"description": "Web-based tool for collaborating on Salesforce projects",
"repository": "https://github.com/SFDO-Tooling/Metecho",
"keywords": ["ci", "python", "django", "salesforce", "github"],
"env": {
"DJANGO_ALLOWED_HOSTS": {
"description": "Heroku proxies web requests and Django needs to be configured to allow the forwards",
"value": ".herokuapp.com"
},
"DJANGO_ADMIN_URL": {
"description": "The url path to the admin section of the site",
"value": "admin"
},
"ADMIN_API_ALLOWED_SUBNETS": {
"description": "Comma-separated list of IPv4 networks which will have Django admin access",
"value": "0.0.0.0/0",
"required": false
},
"DJANGO_SECRET_KEY": {
"description": "A secret key used to provide cryptographic signing",
"generator": "secret"
},
"DJANGO_HASHID_SALT": {
"description": "Salt used to hash IDs that get exposed publicly",
"generator": "secret"
},
"DJANGO_SETTINGS_MODULE": {
"description": "The site settings to use",
"value": "config.settings.production"
},
"DEFAULT_FROM_EMAIL": {
"description": "Email \"from\" address for sending application emails",
"value": "[email protected]"
},
"DB_ENCRYPTION_KEY": {
"description": "A key for encrypting using cryptography.fernet. Generate using cryptography.fernet.Fernet.generate_key"
},
"GITHUB_CLIENT_ID": {
"description": "Client ID for a GitHub App"
},
"GITHUB_CLIENT_SECRET": {
"description": "Client secret for a GitHub App"
},
"GITHUB_HOOK_SECRET": {
"description": "Webhook secret for a GitHub App"
},
"GITHUB_APP_ID": {
"description": "App ID for a GitHub App"
},
"GITHUB_APP_KEY": {
"description": "RSA private key for GitHub App"
},
"SFDX_CLIENT_CALLBACK_URL": {
"description": "Callback URL for Salesforce Connected App (e.g. \"https://<...>/accounts/salesforce/login/callback/\")"
},
"SFDX_CLIENT_ID": {
"description": "Consumer Key for Salesforce Connected App"
},
"SFDX_CLIENT_SECRET": {
"description": "Consumer Secret for Salesforce Connected App"
},
"SFDX_HUB_KEY": {
"description": "RSA private key matching digital certificate on Salesforce Connected App"
}
},
"formation": {
"web": {
"quantity": 1
},
"worker": {
"quantity": 1
},
"worker-short": {
"quantity": 1
}
},
"stack": "heroku-22",
"buildpacks": [
{
"url": "heroku/nodejs"
},
{
"url": "https://github.com/SalesforceFoundation/simple-salesforce-dx-buildpack.git"
},
{
"url": "heroku/python"
}
],
"addons": ["heroku-postgresql", "heroku-redis", "mailgun"],
"scripts": {
"postdeploy": "python manage.py migrate --noinput"
}
}