fitcomtt / parse-starter

Ionic Parse Starter

Home Page:http://fitcom.co

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

What is it?

Basic Ionic App starter that integrates with Parse.com or Parse-Server. Contains a login and register screen.

How to use

Download zip or clone repo

Run npm install

Change the ApplicationID & JavaScriptKey in /www/js/app.js to your own keys from Parse.com

  
  Parse.initialize("ApplicationID", "JavaScriptKey"); //uncomment if using old parse servers.
   
    //Parser server method
    //Parse.initialize("YOUR_APP_ID");
   // Parse.serverURL = 'http://YOUR_PARSE_SERVER:1337/parse'
   

Change the initialize & serverURL in /www/js/app.js to your parse server appId & url.

  
  //Parse.initialize("ApplicationID", "JavaScriptKey"); //uncomment if using old parse servers.
   
    //Parser server method
    Parse.initialize("YOUR_APP_ID");
    Parse.serverURL = 'http://YOUR_PARSE_SERVER:1337/parse'
   

Run npm install gulp - if you want to use Gulp

Run cordova plugin add cordova-plugin-whitelist - otherwise you will get a 404 from android

Run ionic android run or ionic browser run

About

Ionic Parse Starter

http://fitcom.co

License:MIT License


Languages

Language:JavaScript 82.5%Language:CSS 17.4%Language:HTML 0.1%Language:Shell 0.0%