Is there a way to list all CouchApps in one CouchDB?
I would like to do something like:
couchapp list http://domain.tld:5984/content
And get back a list of all couchapp names.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The trick is to use the _all_docs and then select the ones that you are interested in out of that list with the startkey and endkey.
Since all design documents _id starts with _design/ we can select all docs between _design/ and the following character which is 0, giving _design0.
Best of luck!