brew install nvm
nvm install v0.10.31
nvm alias default v0.10.31
brew install git-flow
npm install -g gulp bower
sudo apt-get update
sudo apt-get install -y python-software-properties python g++ make
sudo add-apt-repository -y ppa:chris-lea/node.js
sudo apt-get update
sudo apt-get install nodejs
sudo apt-get install git-flow
npm install -g bower gulp
cd <directory of your cloned repository>
npm install
bower install
gulp build
gulp build && gulp dev
or
gulp build && gulp serve
Note: The password to login to the dashboard will be whatever was set in the 'gulp build' step for store-ng. By default this is:
username: admin
password: admin
brew install git-flow
sudo apt-get install git-flow
git checkout master
git checkout develop
git flow init -d
git flow feature start <feature-name>
$ git push -u origin <FEATURE-BRANCH>
# if you have git aliased to hub otherwise use the github web interface
$ git pull-request -b develop
$ git branch -d <FEATURE-BRANCH>