-
Notifications
You must be signed in to change notification settings - Fork 2
/
app.json
49 lines (49 loc) · 890 Bytes
/
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
{
"environments": {
"review": {
"env": {
"HTTP_AUTH_PASSWORD": {
"required": true
},
"HTTP_AUTH_USERNAME": {
"required": true
},
"SEED_ADMIN_EMAIL": {
"required": true
},
"SEED_ADMIN_INITIAL_PASSWORD": {
"required": true
},
"DOMAIN_NAME": {
"required": false
}
},
"scripts": {
"postdeploy": "bin/rails db:seed"
}
}
},
"addons": [
"mailtrap:unpaid",
"rollbar:trial-5k",
{
"plan": "heroku-postgresql:essential-0",
"options": {
"version": "15"
}
},
"heroku-redis:mini"
],
"buildpacks": [
{
"url": "heroku/nodejs"
},
{
"url": "heroku/ruby"
}
],
"formation": {},
"name": "project-name-param",
"scripts": {},
"stack": "heroku-24"
}