[TASK] Wrap it a classic couchapp structure using erica.

This commit is contained in:
Jan Philipp Timme 2013-09-12 19:07:38 +02:00
parent b485b29530
commit 5306f5ed5b
30 changed files with 12 additions and 0 deletions

3
.couchapprc Normal file
View File

@ -0,0 +1,3 @@
{
"env": {}
}

1
.ericaignore Normal file
View File

@ -0,0 +1 @@
[".git/*", ".gitignore", "README.md"]

View File

Before

Width:  |  Height:  |  Size: 2.7 MiB

After

Width:  |  Height:  |  Size: 2.7 MiB

View File

Before

Width:  |  Height:  |  Size: 230 KiB

After

Width:  |  Height:  |  Size: 230 KiB

1
_id Normal file
View File

@ -0,0 +1 @@
_design/dashboard

1
language Normal file
View File

@ -0,0 +1 @@
javascript

1
rewrites Normal file
View File

@ -0,0 +1 @@
[]

5
views/example/map.js Normal file
View File

@ -0,0 +1,5 @@
function map(doc) {
if (doc.type) {
emit(doc.type, null);
}
}