Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```