webistrano 在哪里存储自定义食谱?
我试图找出 webistrano 在哪里保存其自定义食谱(我想复制它们),但我似乎无法找到它们。我已经搜索了服务器上的安装文件夹但无济于事。
有谁知道它们被保存在哪里吗?
I'm trying to figure out where does webistrano keep its custom recipes (I want to copy them), and I can't seem to locate them. I've scoured the installation folder on the server to no avail.
Does anyone know where they are kept?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它们存储在其后端数据库中。
They were stored in its backend database.
在管理界面内创建的食谱存储在数据库中。
recipes
表保存配方和要执行的修订版本的信息,包括当前版本的实际代码。recipe_versions
保存了配方每个版本的完整副本。项目类型(模板)在位于
lib/webistrano/template/
的存储库内创建Recipes created inside the admin interface are stored in the database. The
recipes
table holds the information for the recipe and the revision to be executed on, include the actual code for the current version. Therecipe_versions
holds a complete copy of each version of the recipe.The project types (templates) are created inside the repository at
lib/webistrano/template/