Is there any good documentation on how to use the Peruser databases?
I have couch peruser enabled in my configuration, and when couchdb starts I see:
[info] 2016-12-12T16:20:52.934747Z couchdb@localhost <0.9.0> --------
Application couch_peruser started on node couchdb@localhost
But when I create a new user, like this:
curl -HContent-Type:application/json \
-vXPUT $COUCH/_users/org.couchdb.user:uid1 \
--data-binary '{"_id": "org.couchdb.user:uid1","name": "uid1","roles":
[],"type": "user","password": "pwd”}'
I don’t get a new database created.
—Jimmy