{
    // For singletons/couch, which has 'couch' as the id and the config name.
    "couch": {
        // An info for debugging; you don't need this.
        "debugging": true,
        // Best practice.
        "cache": false
        // "host": "127.0.0.1",
        // "port": 5984,
        // "auth": null,
        // "secure": false
    },
    "lorem": {
        "design": {
            "find": {
                "views": {
                    "bySomething": {
                        "map": "function(doc) { if (doc.something) emit(doc.something, null); }"
                    }
                }
            },
            "lorem": {
                "views": {
                    "byLorem": {
                        "map": "function(doc) { if (doc.lorem) emit(doc.lorem, null); }"
                    }
                }
            }
        }
    }
}
