- NodeJs
- Npm (comes with node)
- Optional (to run the app most like production):
- RubyGems
- Foreman:
gem install foreman
- Optional (for deployment)
- Frontend:
cd ui && npm install
- Backend:
cd server && npm install
- Frontend:
cd ui && npm start
- Backend, run one of the following from the project root:
- Easiest:
node ./server/index.js
- With instant reloading:
nodemon ./server/index.js
- As it will run on in production:
foreman start
- Easiest:
- Get access to the Heroku project (ask Owen)
- Using the command line, login to Heroku.
git push heroku master
- Get access to the Heroku project (ask Owen)
heroku logs -t --app ng2-playground