Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我将 Azure 移动服务用于我的移动应用后端。我想为测试和生产环境复制我当前的服务(脚本、api、调度程序、表等)。是否有自动化/脚本化的过程来实现这一目标?
不幸的是,在这一点上,答案是否定的。您必须创建一个新的移动服务,使用 cli 或 Web 门户重新创建所有表,复制数据库模式,复制脚本,并重新配置任何调度程序。
一旦你这样做了,如果你使用像 Flyway 或 Visual Studio 这样的数据库模式工具,从 dev->staging->production 维护工作流会更容易。还要连接不同服务的 git 存储库,以便您可以从开发中提取并推送到登台,然后再进行生产。