CouchDB: Workflow for creating documents?

I suggest using your browser, and use the Futon web app, which all CouchDB servers support. Just go to utils in your browser and you can get started adding and modifying documents.

Up vote 2 down vote favorite share g+ share fb share tw.

Beginner question. My goal is to add documents to my CouchDB database on a remote server. Is this the a good way?

Create CouchDB documents using a code editor and store them on my hard drive. Post them to my CouchDB database on a remote server. If yes, how to do #2 on Windows?

Couchdb link|improve this question asked May 15 '11 at 0:10edt1,15731842 78% accept rate.

I suggest using your browser, and use the Futon web app, which all CouchDB servers support. Just go to /_utils/ in your browser and you can get started adding and modifying documents. Once you are comfortable, I suggest the curl tool, however keep in mind that Windows is a little different from the examples.

In Linux and Mac, curl looks like this curl -X POST http://localhost:5984/db/ -d '{"_id":"something"}' In Windows, you cannot use the single-quote: curl -X POST http://localhost:5984/db/ -d "{\"_id\":\"something\"}.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions