-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathapp.json
31 lines (31 loc) · 1.13 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
{
"name": "Angular Spree Api Sandbox",
"description": "Api for Angular Spree",
"repository": "https://github.com/aviabird/angularspree-api",
"logo": "http://res.cloudinary.com/mally/image/upload/v1490186051/Angular_spree_hqgwtq.png",
"keywords": ["angular", "rails", "spree"],
"buildpacks": [
{"url": "https://github.com/mcollina/heroku-buildpack-imagemagick.git"},
{"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 && bundle exec rake spree_sample:load && bundle exec rake spree_roles:permissions:populate && bundle exec rake spree_roles:permissions:populate_permission_sets"
},
"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"
},
"RAILS_MASTER_KEY": {
"description": "Master key",
"value": "enter your master key"
}
}
}