forked from spree/spree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
28 lines (28 loc) · 810 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
{
"name": "Spree Sandbox",
"description":"demo store built with Spree",
"repository": "https://github.com/spree/spree",
"logo": "http://guides.spreecommerce.org/images/logo.png",
"keywords": [
"spree"
],
"buildpacks": [
{"url": "https://github.com/spark-solutions/heroku-buildpack-spree.git"}
],
"addons": [
"heroku-postgresql:hobby-dev"
],
"scripts": {
"postdeploy": "bundle exec rake db:migrate && bundle exec rake db:seed && SKIP_SAMPLE_IMAGES=true bundle exec rake spree_sample:load"
},
"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"
}
}
}