A simple phonebook app made with Node.js + Express and Angular.js
You need Gulp and Bower installed globally:
$ npm install -g gulp
$ npm install -g bower
$ git clone [git-repo-url] phonebook
$ cd phonebook
$ npm install
$ bower install
To build and run the server just use:
$ gulp
By default, this will build the assets in the environment of (development) and runs on 8000 PORT.
To specify environment to production, use --env argument and type 'production'
$ gulp --env production
Specify port number by --port argument
$ gulp --port [port number]