Skip to content

Latest commit

 

History

History
38 lines (28 loc) · 1016 Bytes

README.md

File metadata and controls

38 lines (28 loc) · 1016 Bytes

Pouch Serializer Demo

This project is a demonstration of the requirement for a PouchDB serializer to make the ember-data hasMany relationship work.

Branches

  • example-no-serialzier: A parent/child setup using ember-date belongsTo/hasMany. Objects are saved and displayed in the templates, but not persisted to PouchDB.
  • example-with-serializer: Addition of 'serializers/application.js' containing:
import { Serializer } from 'ember-pouch';
export default Serializer.extend();

Prerequisites

You will need the following things properly installed on your computer.

Installation

  • git clone <repository-url> this repository
  • cd pouch-serializer-demo
  • npm install
  • bower install

Running / Development