I am migrating quite some projects from local servers to Azure functions. In these projects we use our own created Python modules which we are hosting on private GitHub repo. When developing locally or on a Ubuntu server, we can add the ssh-key to the GitHub repo and we can do:
pip install git+ssh://git@github.com/org-name/package-name.git
to install our own modules.
But how would we do this on an Azure functions where we have this in our requirements.txt
. I am not sure how to add ssh to our function app.
Or is there a better solution for this?