find . -name "LICENSE" | /dev/yourBrain
# alternative
find . -name "LICENSE" -print0 | xargs -0 cat
#Setting up
- Install node.js current 6.1.0
- Install cordova
npm install -g cordova
- Install your IDE like Webstorm
- Open Node.js Command Prompt
- Change Directory to the Project Directory src/Frontend
cd <Your Git smart-handwerk Folder>
cd src/Frontend
- Add Platform browser and android
ionic platform add browser
ionic platform add android
- Install bower
npm install -b bower
- 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
- Build Platform browser
ionic build android
- Now Read the License like i recommented to you. I am sure you did not read it. So read it now. Just do it!
- Run and Enjoy
ionic emulate browser