Merge branch 'master' of github.com:dpavlin/angular-mojolicious
[angular-mojolicious.git] / README
1 REST JSONP server using mojolicious for <angular/>
2
3
4 <angular/>: Complex web apps made simple
5 http://angularjs.org/
6
7
8 mojolicious: the web in the box!
9 http://mojolicious.org/
10
11
12 This is my attempt to implement REST API described at:
13
14 http://docs.getangular.com/REST.Basic
15
16 using CouchDB HTTP view API
17
18 http://wiki.apache.org/couchdb/HTTP_view_API
19
20 to provide storage for experimenting with local datasets using angular.
21
22
23 At it's current stage it provides support for angular $resource get, query and $save
24
25 http://angularjs.org/Service:$resource
26
27
28
29 Installation:
30
31         git submodule init
32         git submodule update
33
34 Optionally build angular to get single file download
35
36         cd public/angular
37         rake compile
38         cd -
39
40 Start it with:
41
42         ./angular-server.pl daemon --reload  
43
44
45 Angular examples available:
46
47 - template/Cookbook - examples from wiki working against github version of angular
48 - template/conferece - conference submission example using mojolicious REST API server
49
50
51 Planned features:
52
53 - run queries against data using REST API (currently only simple get is supported)