https://github.com/danielzen/ionic-pouchdb-todo
A simple Ionic Todo app with a PouchDb local storage backend configured to sync
with a CouchDb installation. Demo of offline functionality with server synchronization.
https://github.com/danielzen/ionic-pouchdb-todo
Last synced: 7 months ago
JSON representation
A simple Ionic Todo app with a PouchDb local storage backend configured to sync with a CouchDb installation. Demo of offline functionality with server synchronization.
- Host: GitHub
- URL: https://github.com/danielzen/ionic-pouchdb-todo
- Owner: danielzen
- Created: 2014-06-18T16:57:07.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2015-07-26T01:09:05.000Z (almost 11 years ago)
- Last Synced: 2024-06-20T13:16:11.263Z (almost 2 years ago)
- Language: JavaScript
- Size: 1.38 MB
- Stars: 126
- Watchers: 12
- Forks: 36
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-ionic - danielzen/ionic-pouchdb-todo
README
ionic-pouchdb-todo
==========================
This is an older example of the use of [ng-pouchdb](https://github.com/danielzen/ng-pouchdb).
Please see the latest example of this library in use at http://github.com/danielzen/todo-ng-pouchdb
This is a 4-way data-binding library, in action using a simple Ionic Todo app with a PouchDb local storage backend configured to sync with a CouchDb installation. This is a demo of offline functionality with server synchronization. And is part of my Offline data synchronization talk.
Slides available at: [http://zndg.tl/ng-pouchdb](http://zndg.tl/ng-pouchdb)
You can watch me demo building an early version of the app at
[FITC Spotlight: AngularJS](http://youtu.be/6ecuA-pOev0?t=14m9s) in Toronto.
This repository has multiple releases you can download or tags you can checkout to see the incremental building
of the application. Only the final version using the ng-pouchdb library.
## Installation
You may need to install bower globally with `npm install -g bower` before running `bower install`, to download
the necessary required frontend libraries. You may need to do a `npm -g install bower`, if you haven't already.
## Run the App
You can `cd` into the `www` directory and run
```bash
python -m SimpleHTTPServer 8000
```
If you're using Python 3.x or higher
```bash
python -m http.server 8000
```
You can then just open [http://localhost:8000/index.html](http://localhost:8000/index.html) in a browser.
Personally I use WebStorm which has a built in server. From a JetBrains product, you can select "View...", "Open in Browser" on index.html.
The final version of this demo requires you to [download and install CouchDb](http://couchdb.apache.org/#download), which runs on port 5984. And, [enable CORS](http://docs.couchdb.org/en/1.6.1/config/http.html#cross-origin-resource-sharing).
## iOS version
However, to run this as a mobile application in iOS emulator,
do the following to setup :
```bash
$ cd ionic-pouchdb-todo
$ sudo npm install -g cordova ionic gulp
```
To run in the iPhone Simulator:
```bash
ionic platform add ios
ionic build ios
ionic emulate ios
```
## Building Out & Updating Ionic or PouchDb
To update to a new version of Ionic, open bower.json and change the version listed there.
For example, to update from version `1.0.0-beta.12` to `1.0.0-beta.13`, open bower.json and change this:
```
"ionic": "driftyco/ionic-bower#1.0.0-beta.12"
```
After saving the update to bower.json file, run `bower install`.
I was a little forward thinking adding the `package.json` file.
To continue working on this repository, adding tests, using SASS, you can
```bash
$ npm install
$ gulp install
```