Skip to content

Commit 8538655

Browse files
committed
some docs
1 parent 7be9b35 commit 8538655

File tree

3 files changed

+14
-0
lines changed

3 files changed

+14
-0
lines changed

README.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
## Generated CouchApp
22

3+
This is meant to be an example CouchApp and to ship with most of the CouchApp goodies.
4+
35
Install with
46

57
couchapp push . http://localhost:5984/proto
@@ -12,3 +14,12 @@ You can also create this app by running
1214

1315
couchapp generate proto && cd proto
1416
couchapp push . http://localhost:5984/proto
17+
18+
## Todo
19+
20+
* factor CouchApp Commonjs to jquery.couch.require.js
21+
* use $.couch.app in app.js
22+
23+
## License
24+
25+
Apache 2.0

_attachments/index.html

+1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ <h1>Generated CouchApp</h1>
2929
<script src="vendor/couchapp/jquery.couchForm.js"></script>
3030
<script src="vendor/couchapp/jquery.mustache.js"></script>
3131

32+
<!-- templates used by app.js -->
3233
<script id="new-message" type="text/x-mustache" charset="utf-8">
3334
<div class="avatar">
3435
{{#gravatar_url}}<img src="{{gravatar_url}}"/>{{/gravatar_url}}

vendor/couchapp/_attachments/jquery.couchForm.js

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// I think this should go in jquery.couch.js
2+
13
(function($) {
24
$.fn.couchForm = function(opts) {
35
opts = opts || {};

0 commit comments

Comments
 (0)