Heroku setup

This commit is contained in:
Kimmo Puputti 2017-01-13 15:54:10 +02:00
parent f69c708b7a
commit d2d1e3da74
2 changed files with 8 additions and 2 deletions

View file

@ -58,3 +58,5 @@ and run:
yarn install
yarn run build
yarn start
TODO: Heroku

View file

@ -1,6 +1,6 @@
{
"name": "app",
"version": "0.1.0",
"version": "0.2.0",
"private": true,
"devDependencies": {
"sharetribe-scripts": "0.8.4"
@ -26,6 +26,10 @@
"test-ci": "sharetribe-scripts test --env=jsdom --runInBand",
"eject": "sharetribe-scripts eject",
"start": "node server/index.js",
"dev-server": "yarn run build&&nodemon --watch server server/index.js"
"dev-server": "yarn run build&&nodemon --watch server server/index.js",
"heroku-postbuild": "yarn run build"
},
"engines": {
"node": "6.9"
}
}