I have deployed a function app and there are no functions visible:
In Kodu what I can see seems correct (the files are under wwwroot):
In the app files tab. I can see two folder separators that I’m guessing this could be the problem:
I have WEBSITE_RUN_FROM_PACKAGE
disabled and I’m deploying with:
az functionapp deployment source config-zip -g <resource-group> -n <app-name> --src ./deploy.zip
2
Answers
After trying millions of things, this is what did it for me:
My folder structure is the following:
One of my changes was in the
host.json
:Another thing I did was to upgrade everything (Azure CLI, function core tools, etc.).
And finally, I saw this in the docs:
To create it I needed to run:
Then I restarted the function app and it finally worked.
I have deployed the
Azure Function
with the given command.Even Iam unable to see the
Functions
in the Function tab of the deployedAzure Function
.In
App files
only configuration files will be available.App Service Editor(Preview)
.Open Editor
, you can see the deployed Functions.Output
is shown on Right Pane.My
package.json
file: