如何通过 Azure 数据存储托管 Azure Python API
How to host Azure Python API via Azure Data Storage
我有 python 个脚本,我想在 Azure 中作为 Web 应用程序托管。
- 我想将功能脚本保存在 Azure 数据存储中,并将它们作为 python API 托管在 Azure 中。
- 我希望一些开发人员能够更改 Azure 数据存储中的脚本并实时反映更改,而无需部署。
我怎样才能做到这一点?
- 创建运行时堆栈的函数应用程序 Python 仅在通过 Azure 门户的任何托管计划中的 Linux 版本中受支持。
- 将持续部署设置为 Git门户中函数应用程序部署中心下的 Hub,如下所示:
授权后,请在同一部分提供您的 GitHub 存储库详细信息。
- 从 VS Code 创建 Azure Python 函数并使用 Git 通过命令面板克隆部署到 GitHub 存储库。
- 之后,您可以将函数部署到 azure function app。
发布到 Azure 后,您将获得 Azure Functions Python Rest API.
- I want some devs to be able to change the scripts in the azure data storage and reflect the changes live without having to deploy.
每当您或开发人员通过 GitHub 更改代码并提交更改时,它会自动反映在 Azure Portal Function App 中。
更多信息,请参考此article and GitHub actions of editing the code/script files。
我有 python 个脚本,我想在 Azure 中作为 Web 应用程序托管。
- 我想将功能脚本保存在 Azure 数据存储中,并将它们作为 python API 托管在 Azure 中。
- 我希望一些开发人员能够更改 Azure 数据存储中的脚本并实时反映更改,而无需部署。
我怎样才能做到这一点?
- 创建运行时堆栈的函数应用程序 Python 仅在通过 Azure 门户的任何托管计划中的 Linux 版本中受支持。
- 将持续部署设置为 Git门户中函数应用程序部署中心下的 Hub,如下所示:
- 从 VS Code 创建 Azure Python 函数并使用 Git 通过命令面板克隆部署到 GitHub 存储库。
- 之后,您可以将函数部署到 azure function app。
发布到 Azure 后,您将获得 Azure Functions Python Rest API.
- I want some devs to be able to change the scripts in the azure data storage and reflect the changes live without having to deploy.
每当您或开发人员通过 GitHub 更改代码并提交更改时,它会自动反映在 Azure Portal Function App 中。
更多信息,请参考此article and GitHub actions of editing the code/script files。