The registration of your functions depends on the programming language you're using, as the platform relies on specific entry points. For example, in Python with the v2 programming model, the entry point is function_app.py
. In JavaScript or TypeScript, it is determined by the main
field specified in your package.json
. Ensure that your entry point is correctly configured by consulting the documentation for supported languages.
For intance references for python specific:
- https://learn.microsoft.com/en-us/answers/questions/1807985/cant-view-functions-in-one-function-app-but-can-in
- https://learn.microsoft.com/en-us/azure/azure-functions/functions-reference-python?tabs=get-started%2Casgi%2Capplication-level&pivots=python-mode-decorators
If the information helped address your question, please Accept the answer.
Luis