X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=README;h=afebd1bd1c56279c0f827ad5db6a2b52f910acc8;hb=95e21697605aebab2c58a1f2c8899cb218ac4a9b;hp=d6287ffa9a6b9574b628db3165013db10ee935d0;hpb=e5a5e3c2223e6473679b57c7132e178ea0113dcf;p=angular-mojolicious.git diff --git a/README b/README index d6287ff..afebd1b 100644 --- a/README +++ b/README @@ -13,8 +13,30 @@ This is my attempt to implement REST API described at: http://docs.getangular.com/REST.Basic -using simple in-memory model for experimenting with local datasets using - +using CouchDB HTTP view API + +http://wiki.apache.org/couchdb/HTTP_view_API + +to provide storage for experimenting with local datasets using angular $resource API. +You can also query CouchDB views $xhr("JSON", ...) in angular through angular-server.pl + + +At it's current stage it provides support for angular $resource get, query and $save + +http://angularjs.org/Service:$resource + + +Replication of data between instances using angular REST API can be done with: + + # create local CouchDB database + curl -X PUT http://localhost:5984/test + + ./angular-replicate.pl \ + http://dpavlin.getangular.com/data/conference \ + http://localhost:3000/data/test + +Replication is currently good only for initial import of data since it doesn't +support incremental replication and dies if data is allready present. Installation: @@ -32,3 +54,19 @@ Start it with: ./angular-server.pl daemon --reload + +Angular examples available: + +- template/Cookbook - examples from wiki working against github version of angular +- template/conferece - conference submission example using mojolicious REST API server +- public/app/conference - new application layout with latest example confernce submission + + curl -X PUT http://localhost:5984/conference/_design/symposium \ + -d @public/app/conference/_design/symposium + + +Roadmap: + ++ implement angular-server.pl which implements REST API supported by $resource in angular ++ persistency to local CouchDB, and use views to query data +- tests