Azure functions not displaying in the function app I created

lakshmi.priyanka.jakka1 15 Reputation points
2024-05-08T08:00:52.88+00:00

I created an azure function app. When I try to create a function for it, for the first time the online editor open up and I can write the code. Now if I come to the function app and check under the functions tab it is not the showing the functions I created. Could you please kindly help me.

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

2 answers

Sort by: Most helpful
  1. Deleted

    This answer has been deleted due to a violation of our Code of Conduct. The answer was manually reported or identified through automated detection before action was taken. Please refer to our Code of Conduct for more information.

    2 deleted comments

    Comments have been turned off. Learn more

  2. Ryan Hill 29,681 Reputation points Microsoft Employee
    2024-05-13T22:00:47.5233333+00:00

    Hi @lakshmi.priyanka.jakka1

    You didn't mention what OS hosting for runtime you're using. However, I'm not certain how you were able to use an editor in the portal straight forward to create a function inside the function app. But it's a method I wouldn't advise doing. I strong suggest using VS Code or another editor.

    Based off the runtime; see https://learn.microsoft.com/en-us/azure/azure-functions/functions-reference?tabs=blob&pivots=programming-language-csharp, the hosting will for certain look for the entry point. In .NET, it checks for methods attributed with [Function] while JavaScript/TypeScript, it checks what "main": "<path to entry point>" is set to in package.json, and in Python, it looks in function_app.py. The Azure Functions tooling for VS Code handles all this for you so you don't have a worry about wiring this up.

    0 comments No comments

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.