-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
45 lines (45 loc) · 1.16 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
{
"name": "Spree Commerce Demo",
"description": "Spree is a is a open-source e-commerce platform for Rails. It is a great starting point for any Rails developer to quickly build an e-commerce store.",
"keywords": [
"spree commerce",
"spree",
"e-commerce",
"global commerce"
],
"logo": "https://spreecommerce.org/wp-content/uploads/2019/09/[email protected]",
"website": "https://spreecommerce.org",
"repository": "https://github.com/spree/spree_starter",
"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": "spree123"
},
"SECRET_KEY_BASE": {
"description": "A secret key for verifying the integrity of signed cookies.",
"generator": "secret"
}
},
"formation": {
"web": {
"quantity": 1,
"size": "standard-2x"
}
},
"scripts": {
"postdeploy": "bundle exec rails db:seed"
},
"addons": [
"heroku-postgresql",
"heroku-redis"
],
"buildpacks": [
{
"url": "heroku/ruby"
}
]
}