-
Notifications
You must be signed in to change notification settings - Fork 245
/
app.json
84 lines (84 loc) · 2.14 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
{
"name": "DARIA Case Manager",
"description": "A Rails-based case management system for abortion funds",
"repository": "https://github.com/DARIAEngineering/dcaf_case_management",
"scripts": {
"postdeploy": "bundle exec rails db:migrate"
},
"env": {
"CSP_VIOLATION_URI": {
"description": "from your CSP report endpoint",
"value": "26d24d139baa52b71da9637b14c7d17b.report-uri.io/r/default"
},
"DARIA_GOOGLE_KEY": {
"description": "from google cloud account for oauth/sign on",
"value": "",
"required": false
},
"DARIA_GOOGLE_SECRET": {
"description": "from google cloud account for oauth/sign on",
"value": "",
"required": false
},
"GOOGLE_GEO_API_KEY": {
"description": "from google cloud account, specific to the geography API",
"value": "",
"required": false
},
"FUND_MAILER_DOMAIN": {
"description": "domain you want emails to come from. Should be the domain configured with sendgrid. Usually dariaservices.com.",
"value": "dariaservices.com"
},
"RAILS_LOG_TO_STDOUT": {
"description": "set to true",
"value": "true"
},
"RAILS_SERVE_STATIC_FILES": {
"description": "set to true",
"value": "true"
},
"SENTRY_DSN": {
"description": "get it from Sentry",
"value": "",
"required": false
},
"SITE_URL": {
"description": "The app name you just selected plus .herokuapp.com. e.g. daria-xaf.herokuapp.com",
"value": ""
},
"ASSET_SITE_URL": {
"description": "Optional - domain set up to serve assets",
"value": ""
},
"SENDGRID_USERNAME": {
"description": "the sendgrid username for auth. Should always be `apikey`",
"value": "apikey"
},
"SENDGRID_PASSWORD": {
"description": "get it from Sendgrid",
"value": ""
},
},
"formation": {
"web": {
"quantity": 1,
"size": "Hobby"
}
},
"addons": [
{
"plan": "logentries"
},
{
"plan": "heroku-postgresql:hobby-basic"
},
{
"plan": "scheduler"
}
],
"buildpacks": [
{
"url": "heroku/ruby"
}
]
}