Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cristianperez/ibmionicmobilearchetype
IBM mobile first platform Archetype with IONIC 1
https://github.com/cristianperez/ibmionicmobilearchetype
angularjs css3 ibm-mobilefirst ionic ionicframework javascript mobilefirst-developer-kit
Last synced: about 1 month ago
JSON representation
IBM mobile first platform Archetype with IONIC 1
- Host: GitHub
- URL: https://github.com/cristianperez/ibmionicmobilearchetype
- Owner: cristianPerez
- Created: 2017-06-27T22:22:46.000Z (over 7 years ago)
- Default Branch: feature/mfp
- Last Pushed: 2017-08-17T15:20:38.000Z (over 7 years ago)
- Last Synced: 2024-11-27T21:41:40.069Z (about 1 month ago)
- Topics: angularjs, css3, ibm-mobilefirst, ionic, ionicframework, javascript, mobilefirst-developer-kit
- Language: CSS
- Homepage:
- Size: 4.82 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# MFP(IBM MOBILE FIRST PLATFORM) MOBILE ARCHETYPE
## REQUIRED
### INSTALL
### NODEJS 6.x.x
### ANDROID STUDIO
### XCODE AND ACCEPT THE LICENCE## After finish the node installation and download IDES run this command in mac os.
```javascript
$ npm run build
```# For windows i am sorry, check the build.sh file and run each command manually.
```bash
#!/usr/bin/env bash###REQUIRED
## INSTALL
## NODEJS 6.x.x
## ANDROID STUDIO
## XCODE AND ACCEPT THE LICENCE#INSTAL PACKAGES
npm install ionic -g
npm install ionic-cli -g
npm install [email protected] -g
npm install gulp-cli -g
npm install gulp -g
npm install bower -g
npm install -g ios-sim##INSTALL PLATFORMS AND REMOVE PLATFORMS
cordova platform remove android
cordova platform add android
cordova platform remove ios
cordova platform add ios##INSTALL NPM DEPENDENCIES
npm i##INSTALL BOWER COMPONENTS
bower install##INSTSALL PLUGINS
cordova plugin add cordova-plugin-mfp
cordova plugin add cordova-plugin-network-information
cordova plugin add cordova-plugin-mfp-jsonstore##REBUILD NODE SASS
npm rebuild node-sass##GULP BUILD ALL PROJECT
gulp build##RUN PROJECT ON NAVIGATOR
ionic serve
```