从Azure repos导入Azure功能模块



是否可以直接从另一个git azure repos将模块导入azure函数?

而不是在https://learn.microsoft.com/en-us/azure/azure-functions/functions-reference-python#folder-结构

__app__
| - my_first_function
| | - __init__.py
| | - function.json
| | - example.py
| - my_second_function
| | - __init__.py
| | - function.json
| - shared_code
| | - my_first_helper_function.py
| | - my_second_helper_function.py
| - host.json
| - requirements.txt
| - Dockerfile
tests

并使用类似的东西

from ..shared_code import my_first_helper_function

要导入模块,我想将所有shared_code保存在一个单独的git存储库中,并从那里导入。

pip支持从您可以直接利用的版本控制进行安装。请注意,如果git repo是私有的,那么您的构建系统将需要对它的权限。

相关内容

  • 没有找到相关文章

最新更新