On Fri, Mar 9, 2012 at 5:34 AM, Paul Roebuck <[email protected]> wrote: > I have a multi-design document setup. I can make this work moving the vendor > directory under each design document. But I don't really want to manage > multiple copies of library javascript code per design document. Please > enlighten > me on how this can be shared from the master design. > > Simple example for shows using mustache: > > Current: > xxx > _design/master > _design/foo > show > this > vendor > couchdb > lib > mustache > _design/bar > show > that > vendor > couchdb > lib > mustache > > > Desired: > xxx > _design/master > vendor > couchdb > lib > mustache > _design/foo > show > this > _design/bar > show > that > > > How does one design document "reference" another as such (via require())? >
`ln -s` should work on the filesystem . There is no possibility include libs from other docs at the server level for now. - benoît
