hugs (owner)

Revisions

gist: 73018 Download_button fork
public
Description:
It's almost *too* easy.
Public Clone URL: git://gist.github.com/73018.git
Embed All Files: show embed
couchdb-delete-db-with-curl.txt #
1
2
3
4
5
6
7
8
9
$ curl http://localhost:5984/_all_dbs
["db-1","db-2","db-3"]
 
$ curl -X DELETE http://localhost:5984/db-3
{"ok":true}
 
$ curl http://localhost:5984/_all_dbs
["db-1","db-2"]