https://github.com/chrisekelley/barcelonajs-pouchdb-talk-12nov2013
Slides for Barcelona.js talk on PouchDB 12nov2013
https://github.com/chrisekelley/barcelonajs-pouchdb-talk-12nov2013
Last synced: 3 months ago
JSON representation
Slides for Barcelona.js talk on PouchDB 12nov2013
- Host: GitHub
- URL: https://github.com/chrisekelley/barcelonajs-pouchdb-talk-12nov2013
- Owner: chrisekelley
- Created: 2013-11-03T12:05:42.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-11-13T12:16:09.000Z (over 11 years ago)
- Last Synced: 2025-01-20T06:25:03.244Z (5 months ago)
- Language: JavaScript
- Size: 563 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Using PouchDB for PhoneGap/Cordova apps
This talk will focus on my experiences deploying Android apps that sync with CouchDB. I will focus mostly on PouchDB
but will also discuss the other frameworks I have been using to deploy Android applications (Backbone.js, Coconut, GCM/Urban Airship, PhoneGap/Cordova).> Under Construction.
> A [Bespoke.js](http://markdalgleish.com/projects/bespoke.js) presentation, built with [generator-bespoke](https://github.com/markdalgleish/generator-bespoke)
## View slides locally
First, ensure you have the following installed:
1. [Node.js](http://nodejs.org)
2. [Bower](http://bower.io): `$ npm install -g bower`
3. [Grunt](http://gruntjs.com): `$ npm install -g grunt-cli`Then, install dependencies and run the preview server:
```bash
$ npm install && bower install
$ grunt server
```## To deploy to github-pages:
https://github.com/weavejester/codox/wiki/Deploying-to-GitHub-Pages
Inside your project directory, run the following commands:
rm -rf public && mkdir public
git clone [email protected]:chrisekelley/barcelonajs-pouchdb-talk-12nov2013.git public
cd public
git symbolic-ref HEAD refs/heads/gh-pages
rm .git/index
git clean -fdx
cd ..
Build your documentationgrunt server
To publish your docs to Github Pages, run the following commands:
cd public
git checkout gh-pages # To be sure you're on the right branch
git add .
git commit -am "updated ...."
git push -u origin gh-pages
cd ..For subsequent updates,
cd public
git add index.html
git commit -am "updated ...."
git push -u origin gh-pages