X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;ds=sidebyside;f=README;h=b7af6ebb1da359af2b9360607ae63d978be689fb;hb=26fd4cefb008db630132c12b600d86760324f5f2;hp=935344b02244097a46234ba6b4cb162847a72913;hpb=476fb93ea34c230de146c5be08ef69ac25f85b5d;p=angular-mojolicious.git diff --git a/README b/README index 935344b..b7af6eb 100644 --- a/README +++ b/README @@ -37,11 +37,12 @@ which can be used to provide data using external stand-alone scripts. Replication of data between instances using angular REST API can be done with: # create local CouchDB database - curl -X PUT http://localhost:5984/test + $ curl -X PUT http://localhost:5984/demo + {"ok":true} - ./angular-replicate.pl \ + $ ./angular-replicate.pl \ http://dpavlin.getangular.com/data/conference \ - http://localhost:3000/data/test + http://localhost:3000/data/demo Replication is currently good only for initial import of data since it doesn't support incremental replication and dies if data is allready present. @@ -49,18 +50,18 @@ support incremental replication and dies if data is allready present. Installation: - git submodule init - git submodule update + $ git submodule init + $ git submodule update Optionally build angular to get single file download - cd public/angular - rake compile - cd - + $ cd public/angular + $ rake compile + $ cd - Start it with: - ./angular-server.pl daemon --reload + $ ./angular-server.pl daemon --reload Angular examples available: @@ -69,7 +70,7 @@ Angular examples available: - 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 \ + $ curl -X PUT http://localhost:5984/conference/_design/symposium \ -d @public/app/conference/_design/symposium @@ -87,20 +88,23 @@ CouchDB examples: trigger/email.pm - skeleton for sending e-email trigger/KinoSearch.pm - full-text search - $ curl -X PUT http://localhost:5984/trigger_demo + $ curl -X PUT http://localhost:5984/demo {"ok":true} - $ ./couchdb-trigger.pl http://localhost:5984/trigger_demo trigger/shell.pm + $ ./couchdb-trigger.pl http://localhost:5984/demo trigger/shell.pm - $ curl -X PUT http://localhost:5984/trigger_demo/t1 -d '{"trigger":{"command":"notify-send CouchDB t1"}}' + $ curl -X PUT http://localhost:5984/demo/t1 -d '{"trigger":{"command":"notify-send CouchDB t1"}}' couchdb-external-kinosearch.pl - external searcher for KinoSearch indexes (configuration for CouchDB is included at end of file) - $ ./couchdb-trigger.pl http://localhost:5984/trigger_demo trigger/KinoSearch.pm + $ ./couchdb-trigger.pl http://localhost:5984/demo trigger/KinoSearch.pm + + $ curl -X PUT http://localhost:5984/demo/text -d '{"text":"foobar bla bla"}' + {"ok":true,"id":"text","rev":"1-cf9bb608f93af7f4e5e40656a6e50096"} - $ curl 'http://localhost:5984/trigger_demo/_kinosearch?include_docs=true;q=foobar' + $ curl 'http://localhost:5984/demo/_kinosearch?include_docs=true;q=foobar'