8000 Use an env without secrets for new review apps · venkata-qa/demo.activeadmin.info@77a6ed7 · GitHub
[go: up one dir, main page]

Skip to content

Commit 77a6ed7

Browse files
Use an env without secrets for new review apps
I only created a random one for SECRET_KEY_BASE. The addons work in a default mode anyways for review apps.
1 parent c816832 commit 77a6ed7

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

app.json

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,35 @@
4747
"required": true
4848
}
4949
},
50+
"environments": {
51+
"review": {
52+
"env": {
53+
"LANG": {
54+
"required": true,
55+
"value": "en_US.UTF-8"
56+
},
57+
"RACK_ENV": {
58+
"required": true,
59+
"value": "production"
60+
},
61+
"RAILS_ENV": {
62+
"required": true,
63+
"value": "production"
64+
},
65+
"RAILS_LOG_TO_STDOUT": {
66+
"required": true,
67+
"value": "enabled"
68+
},
69+
"RAILS_SERVE_STATIC_FILES": {
70+
"required": true,
71+
"value": "enabled"
72+
},
73+
"SECRET_KEY_BASE": {
74+
"required": true
75+
}
76+
}
77+
}
78+
},
5079
"formation": {
5180
"web": {
5281
"quantity": 1

0 commit comments

Comments
 (0)
0