Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I get a list of all design documents in CouchDB? Using a http query, not futon.

share|improve this question
2  
Futon just makes queries against CouchDB over HTTP, it doesn't use any special reserved interfaces :) – mikeal May 12 '10 at 1:36

1 Answer

up vote 17 down vote accepted

This is the exact query Futon does internally:

GET /dbname/_all_docs?startkey="_design/"&endkey="_design0"&include_docs=true
share|improve this answer
great, thanks a lot! karlthorwald - aka – user89021 May 12 '10 at 17:40
If you want just a list of design docs then drop &include_docs=true – Brad Rhoads Jan 31 at 17:17

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.