https://github.com/arun0009/ionicapp
Ionic App (chat) with Parse Push, Firebase and Google Analytics
https://github.com/arun0009/ionicapp
google-analytics ionic-app ionic-framework parse
Last synced: 6 months ago
JSON representation
Ionic App (chat) with Parse Push, Firebase and Google Analytics
- Host: GitHub
- URL: https://github.com/arun0009/ionicapp
- Owner: arun0009
- Created: 2015-02-26T22:07:26.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2015-04-25T01:18:04.000Z (about 11 years ago)
- Last Synced: 2025-04-23T05:40:51.165Z (about 1 year ago)
- Topics: google-analytics, ionic-app, ionic-framework, parse
- Language: JavaScript
- Homepage:
- Size: 2.63 MB
- Stars: 11
- Watchers: 1
- Forks: 10
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ionicapp
Ionic App with Parse Push, Firebase for RealTime backend as service and Google Analytics (using ngCordova Plugin). Just want to show best practices for directory structure, environment properties file management with Gulp and handling promises with Deferred pattern and getters n setters.
This is a hybrid mobile app developed built using ionic framework - http://ionicframework.com/getting-started/
#####To install ionic/cordova run the below npm command
$ sudo npm install -g cordova ionic
#####Install all modules from package.json using npm
$ npm install
#####Install the plugins and platform configured in package.json:
$ ionic state restore
#####We use gulp for build system, to build for different environments (e.g. dev, prod)
1. gulp config-dev
2. gulp config-prod
This will create/replace config.js contents with environment based properties.
#####We use bower-installer (https://github.com/blittle/bower-installer) for installing javascript dependencies.
#####To template your files, you can use the Ionic Creator
You will need to sign up at: http://creator.ionic.io/
#####The best way to develop and test (within a browser and easily emulate a device) on both ios/android, run the below command:
$ ionic serve --lab
or you can emulate it on ios via --> $ ionic emulate ios
#####To debug Android remotely, you can use adb
1. First build and install the app on your device
$ ionic build android
2. Once installed on your device, enable developer mode (more info: http://developer.android.com/tools/device.html)
* Go to Settings > About phone and tap Build number seven times. Return to the previous screen to find Developer options at the bottom.
* In the developer options, enable debugging over USB.
3. Connect the device through USB and run adb (more info: http://developer.android.com/tools/help/adb.html)
* The adb tool is located in /platform-tools/
* Connect to your remote device
$ adb -d logcat
You can checkout this app by downloading Ionic View.
Scan the QR Code once you register and open the Ionic View App.
####NOTE: We haven't provisioned the app for Push so just select "No Thanks" for Push Notification.
