arngrimur / quotes

quotes

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

quotes

quotes is a small and very simple AngularJS RESTful application with a Couchbase backend.
Credits to draptik for his angularrestful ngdemo which was very helpful during the creation of this project.

Notes

  • CRUD - So far no Delete, and Create/Update is the same function (handled by Couchbase backend).
  • Couchbase - I use the default bucket and cluster all the time.
  • Views - the view "name_and_quote looks" like this:
    function (doc, meta) { if (doc.name && doc.quote) { emit(doc.name, doc.quote); }}

About

quotes


Languages

Language:Java 85.5%Language:JavaScript 14.5%