[Client Side Part]
SSITA Ch-034 group
Note: Node.js and Ruby must be installed on you OS system
-
Install global components In any folder
npm install -g grunt-cli
npm install -g bower
npm install -g json-server
gem install sass -
Install project components:
In project root folder
npm install
bower install
json-server --watch db.jsonornode server/index.js- to run local api service on port 3000 (http://localhost:3000)
grunt build:dev- to copy vendors libraries to dev environment and to build project for development
grunt server:dev- to run local server on port 8034 (http://localhost:8834) with livereload for development
grunt build:prod- to build production version of project
grunt server:prod- to run local server on port 8834 (http://localhost:8834) with livereload for development
git config --global user.name "<YOUR NAME>"
git config --global user.email "<YOUR EMAIL ADDRESS>"
git clone https://github.com/<YOUR-USERNAME>/Ch-034.git
git remote -v
git remote add upstream https://github.com/nromanen/Ch-034.git
git commit -am "<MESSAGE>"
git push