Mercurial > hg > Feedworm
view replicate.sh @ 231:16fa9f090c36
hard-code python2
author | Dirk Olmes <dirk@xanthippe.ping.de> |
---|---|
date | Thu, 25 Sep 2014 08:06:51 +0200 |
parents | 6cbd4420c187 |
children |
line wrap: on
line source
# replicate all documents xanthippe's DB into the local DB curl -X POST \ http://localhost:5984/_replicate \ -d '{"source":"http://xanthippe:5984/feedworm", "target":"feedworm"}' \ -H "Content-Type: application/json" # replicate all documents from the local DB into xanthippe's DB curl -X POST \ http://localhost:5984/_replicate \ -d '{"source":"feedworm","target":"http://xanthippe:5984/feedworm"}' \ -H "Content-Type: application/json" # compact the local DB and views curl -X POST -H "Content-Type: application/json" http://localhost:5984/feedworm/_compact curl -X POST -H "Content-Type: application/json" http://localhost:5984/feedworm/_compact/feedworm