forked from refinery/refinerycms-example-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
35 lines (35 loc) · 974 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
{
"name": "Refinery Example App",
"description": "A demonstration website using Refinery with some test data.",
"website": "https://www.refinerycms.com/",
"repository": "https://github.com/refinery/refinery-example-app",
"logo": "https://raw.githubusercontent.com/refinery/refinerycms/master/core/app/assets/images/refinery/refinery-cms-logo.svg",
"keywords": [
"refinery",
"example",
"rails",
"cms",
"ruby"
],
"addons": [
"heroku-postgresql:hobby-dev"
],
"scripts": {
"postdeploy": "bin/rails db:migrate && bin/rails db:seed"
},
"env": {
"DEVISE_SECRET_KEY": {
"description": "A secret key for salting user passwords.",
"generator": "secret"
},
"RAILS_LOG_TO_STDOUT": {
"value": "true"
},
"RAILS_SERVE_STATIC_FILES": {
"value": "true"
},
"SECRET_KEY_BASE": {
"generator": "secret"
}
}
}