https://github.com/tienthanh2509/isc-node7/projects/1
# Install nodejs && ruby
## Ubuntu
curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash -
sudo apt-get install -y nodejs ruby
## Windows
#https://nodejs.org/en/download/
#http://rubyinstaller.org/downloads/
# Install Bower, Grunt, Sass
npm install -g bower grunt grunt-cli
gem install sass
# Install node-sass if don't want install ruby-sass
npm install -g node-sass
# Warning! Make sure you have private key before clone using ssh else try https instead
# Sign your commit with GPG keys
# Fast-clone
git clone --depth=1 git@github.com:tienthanh2509/isc-node7.git -b develop
cd isc-node7
# Install npm dependencies
npm install
# Install bower dependencies
bower install
# Grunt task "grunt watch" if needed!
# Available task: default, css, js, clean
grunt
# Run nodejs express server | Use PORT env for custom listening port
npm start