将 CouchDB 视图置于源代码控制之下的推荐方法是什么?
我正在编写一个节点 CRUD 应用程序,需要一些 CouchDB 视图(我正在使用express 和 cradle)。
我已经用 git 控制了节点应用程序本身,但我的数据库视图目前不受控制。
将这些置于源代码控制之下的推荐方法是什么?我不想将整个数据库(包括数据)置于源代码控制之下。
I'm writing a node CRUD app that requires a few CouchDB views (I'm using express and cradle).
I've got the node app itself controlled with git, but my DB views are currently uncontrolled.
What's the recommended way to put these under source control? I don't want to put the entire database (including data) under source control.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
看看 couchapp,http://couchapp.org/。您可以使用它将版本控制的设计文档推送到数据库。
Take a look at couchapp, http://couchapp.org/. You can use that to push your version-controlled design docs to a database.
也许有用:CouchApp 也可以将一些文档推送到数据库中。例如,配置或演示的文档。将该文件以 JSON 格式放入文件夹“_docs”(与“lists”、“shows”等处于同一级别)。
文件:'any-configure.json'
Maybe useful: also CouchApp may push some docs in db. For example, doc(s) of configure or demo. For that put file in folder '_docs' (the same level with 'lists', 'shows', etc.) in JSON format.
File: 'any-configure.json'
正如所指出的,使用 couchapp 可以更轻松地处理设计文档。
我在Java项目中实现了类似的方法,例如 这里以及管理这些文档的类。
As pointed, using couchapp could make it easier to work with design documents.
I have implemented a similar approach in a Java project, an example here and the class that manages these documents.