Ionic App with Parse as Backend (using Angular Parse library) Boilerplate
ToDo List
- ✅ Ionic Tabs Layout
- ✅ Ionic Page Refresher
- ✅ Ionic Popup
- ✅ Parse CRUD
- ✅ Parse Relationship between Models
- Parse Login
- Parse Push Notifications
Learn how to contribute with this repository here.
Just clone this repo and change whatever you want!
npm install
In www/js/app.js search for:
// initialize Parse
return ParseProvider.initialize(
"YOUR_APP_ID", //App ID
"YOUR_REST_API_KEY" //REST API Key
);
Change these values with the values from your Parse app
- Runs full browser
ionic serve
- Runs comparison, side by side, between iOS and Android versions
ionic serve --lab
- Launch emulator/simulator, deploy and execute your app
ionic run [ios/android] --emulator
- Launch App on emulator/simulator with livereload
ionic run [ios/android] --emulator --livereload
See here.