【发布时间】:2022-01-06 15:55:37
【问题描述】:
我有想要在 Azure 中托管为 Web 应用程序的 Python 脚本。
- 我想将函数脚本保留在 azure 数据存储中,并将它们作为 python API 托管在 azure 中。
- 我希望一些开发人员能够更改 azure 数据存储中的脚本并实时反映更改,而无需部署。
我该怎么做?
【问题讨论】:
标签: python azure api azure-web-app-service azure-storage
我有想要在 Azure 中托管为 Web 应用程序的 Python 脚本。
我该怎么做?
【问题讨论】:
标签: python azure api azure-web-app-service azure-storage
授权后,在同一部分提供您的 GitHub 存储库详细信息。
在此处发布到 azure 后,您将获得 Azure Functions Python Rest API。
- 我希望一些开发人员能够更改 Azure 数据存储中的脚本并实时反映更改,而无需部署。
每当您或开发人员通过 GitHub 对代码进行更改并提交更改时,它都会自动反映在 Azure Portal Function App 中。
更多信息请参考article和GitHub actions of editing the code/script files。
【讨论】: