forked from solidusio/solidus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
29 lines (29 loc) · 817 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
{
"name": "Solidus Sandbox",
"description": "A demonstration store using Solidus with some test data.",
"repository": "https://github.com/solidusio/solidus",
"logo": "http://solidus.io/favicon.ico",
"keywords": [
"solidus",
"demo"
],
"buildpacks": [
{"url": "https://github.com/solidusio/heroku-buildpack-solidus-demo.git"}
],
"addons": [
"heroku-postgresql:hobby-dev"
],
"scripts": {
"postdeploy": "rake db:migrate && rake db:seed spree_sample:load && rails runner Spree::Image.destroy_all"
},
"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"
}
}
}