Initial commit - fresh start
This commit is contained in:
45
app.json
Normal file
45
app.json
Normal file
@@ -0,0 +1,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/spree-60x60@2x.png",
|
||||
"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": "spree@example.com"
|
||||
},
|
||||
"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"
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user