将 CouchDB 视图置于源代码控制之下的推荐方法是什么?

发布于 2024-12-06 20:52:52 字数 166 浏览 1 评论 0原文

我正在编写一个节点 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

只为守护你 2024-12-13 20:52:52

看看 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.

抱着落日 2024-12-13 20:52:52

也许有用:CouchApp 也可以将一些文档推送到数据库中。例如,配置或演示的文档。将该文件以 JSON 格式放入文件夹“_docs”(与“lists”、“shows”等处于同一级别)。

文件:'any-configure.json'

{
    "_id": "any-configure",
    "fieldA": "...",
    "fieldB": "...",
    ...
}

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'

{
    "_id": "any-configure",
    "fieldA": "...",
    "fieldB": "...",
    ...
}
悲凉≈ 2024-12-13 20:52:52

正如所指出的,使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文