Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ekaputra07/ionic-parse-todo
A simple todo app powered by Ionic Framework and Parse for its datastore.
https://github.com/ekaputra07/ionic-parse-todo
Last synced: 4 days ago
JSON representation
A simple todo app powered by Ionic Framework and Parse for its datastore.
- Host: GitHub
- URL: https://github.com/ekaputra07/ionic-parse-todo
- Owner: ekaputra07
- Created: 2014-07-12T02:59:35.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-07-13T05:10:52.000Z (over 10 years ago)
- Last Synced: 2023-03-25T21:08:04.813Z (almost 2 years ago)
- Language: JavaScript
- Homepage:
- Size: 1.51 MB
- Stars: 6
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Parse Todo
===========A simple todo app powered by [Ionic Framework](http://ionicframework.com/getting-started/) and [Parse](https://www.parse.com/) datastore.
## Using this project
Make sure the `ionic` utility is installed:
```bash
$ sudo npm install -g ionic cordova
```And **register an application at Parse**. https://www.parse.com/.
Add your Parse application ID and Key in `www/js/services.js`.
```javascript
var parseAppId = 'myappid',
parseAppKey = 'myappkey';
```Then run it:
```bash
$ ionic serve
```Then open your browser at http://localhost:8100
If you want to run it as Android application, you should install the platform first.
```bash
$ cordova platform add android
$ cordova plugin add org.apache.cordova.device
$ cordova plugin add org.apache.cordova.network-information
$ cordova build android
$ cordova emulate android
```More info on this can be found on the Ionic [Getting Started](http://ionicframework.com/getting-started) page.
Screenshots
===========![screen-1.png](https://raw.github.com/ekaputra07/ionic-parse-todo/master/screen-1.png)
![screen-2.png](https://raw.github.com/ekaputra07/ionic-parse-todo/master/screen-2.png)