/sfDemo

Primary LanguageJavaScript

README

Setup Development Environment

  • Java SDK
  • Eclipse for Java
    • Android Development Tools (ADT) Plugin
  • Android SDK/ Android Build Tool
  • Git
  • NodeJS
  • Cordova
  • GruntJS
  • Putting Altogether

How to build using Grunt

  1. Install Node.js[https://nodejs.org/en/]
  2. Install dependencies $ npm install -g grunt-cli $ npm install
  3. To Build : $ grunt build

Reference For Grunt [Grunt-Contrib-copy(https://www.npmjs.com/package/grunt-contrib-copy)] https://github.com/jsoverson/preprocess

Useful commands for GIT

git checkout

To switch to different branch

$ git checkout <name_of_branch>
git pull

To sync with remote, switch to branch and then

$ git checkout <name_of_branch>
$ git pull <remote_name> <name_of_branch>

where remote_name is name of remote repo e.g. origin