-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
34 lines (34 loc) · 747 Bytes
/
app.json
File metadata and controls
34 lines (34 loc) · 747 Bytes
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
{
"name": "decidim_localret",
"description": "A deployment tailored to Localret",
"keywords": [],
"addons": [
"heroku-postgresql:hobby-dev",
"heroku-redis:hobby-dev",
"sendgrid:starter"
],
"scripts": {
"postdeploy":"DISABLE_DATABASE_ENVIRONMENT_CHECK=1 rake db:schema:load db:migrate db:seed"
},
"env": {
"SECRET_KEY_BASE": {
"description": "A secret used by Rails to identify sessions",
"generator": "secret"
},
"AWS_ACCESS_KEY_ID": {
"required": true
},
"AWS_SECRET_ACCESS_KEY": {
"required": true
},
"HERE_APP_ID": {
"required": true
},
"HERE_APP_CODE": {
"required": true
},
"HEROKU_APP_NAME": {
"required": true
}
}
}