azure function deployed but not visible in function app

Gnanasoundari 45 Reputation points
2025-03-21T12:58:12.2066667+00:00

I am trying to deploy function i created in VScode using v2 programming model, it works in local, but when i deploy to azure function app, i can see "deployment successful" but i can't see my function in the function folder of my function app.

Note: I have tried all the possible solutions suggested in Microsoft Forum for similar problem, but the issue still exists.

"AzureWebJobsFeatureFlags": "EnableWorkerIndexing" did not fix it.

Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
5,929 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Luis Arias 8,621 Reputation points Volunteer Moderator
    2025-03-21T13:59:52.7233333+00:00

    Hi Gnanasoundari

    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:

    If the information helped address your question, please Accept the answer.

    Luis


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.