forked from solidusio/solidus-example-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
48 lines (48 loc) · 1.26 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
{
"name": "Solidus Example App",
"description": "A demonstration store using Solidus with some test data.",
"website": "https://solidus.io/",
"repository": "https://github.com/solidusio/solidus-example-app",
"logo": "https://solidus.io/assets/images/favicon/favicon.ico",
"keywords": [
"solidus",
"example",
"rails",
"ecommerce",
"ruby",
"spree",
"cart",
"store"
],
"addons": [
"heroku-postgresql:hobby-dev",
"memcachier:dev",
"cloudinary:starter"
],
"scripts": {
"postdeploy": "bin/rails db:migrate && bin/rails db:seed spree_sample:load"
},
"env": {
"ADMIN_EMAIL": {
"description": "We will create an admin user with this email.",
"value": "[email protected]"
},
"ADMIN_PASSWORD": {
"description": "We will create an admin user with this password.",
"value": "test123"
},
"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"
}
}
}