Skip to content

Latest commit

 

History

History
52 lines (49 loc) · 1.33 KB

README.md

File metadata and controls

52 lines (49 loc) · 1.33 KB

READ ALL LICENSE FILES RECURSIVE IN THIS FOLDER

find . -name "LICENSE" | /dev/yourBrain
# alternative
find . -name "LICENSE" -print0 | xargs -0 cat

#Setting up

  1. Install node.js current 6.1.0
  2. Install cordova
npm install -g cordova
  1. Install your IDE like Webstorm
  2. Open Node.js Command Prompt
  3. Change Directory to the Project Directory src/Frontend
cd <Your Git smart-handwerk Folder>
cd src/Frontend
  1. Add Platform browser and android
ionic platform add browser
ionic platform add android
  1. Install bower
npm install -b bower
  1. Install all cordova plugins, if an error occurs, install the missing plugin. All current known plugins are:
cordova plugin add cordova-plugin-geolocation
cordova plugin add cordova-plugin-console
cordova plugin add cordova-plugin-device
cordova plugin add cordova-plugin-splashscreen
cordova plugin add cordova-plugin-statusbar
cordova plugin add ionic-plugin-keyboard
cordova plugin add cordova-plugin-compat
cordova plugin add cordova-plugin-x-toast
cordova prepare
  1. Build Platform browser
ionic build android
  1. Now Read the License like i recommented to you. I am sure you did not read it. So read it now. Just do it!
  2. Run and Enjoy
ionic emulate browser