"Node Store" is a CRUD application built with with Backbone.js, Twitter Bootstrap, Node.js, Express, and MongoDB.
- Clone this repo
- cd into the repo directory:
$ cd nodestore
- Install the Heroku Toolbelt
- Sign up for a Heroku account
- Login to Heroku from the
herokuCLI:
$ heroku login
- Create a new app on Heroku:
$ heroku create
- Add the MongoLab Heroku (sandbox) Add-on
$ heroku addons:add mongolab:sandbox
- Upload the app to Heroku:
$ git push heroku master
- Open the app in your browser:
$ heroku open
- Install MongoDB
- Start MongoDB
$ mongod
- Install all dependencies
$ [sudo] npm install
- Start the web server (in a different command tab)
$ node server