I defined a Python script that implements an HTTP trigger function. The development & deployments are done with 'az' and 'func' CLIs, so all the supporting files are in the folder (requirements.txt, local_settings.json, .funcignore, etc.)
Next step - create the Function App - no errors.
Next step - publish the Function App (using the CLI 'func azure functionapp publish') - works. However, the last messages from the publish command are supposed to be the list of functions in the app, but nothing is listed.
When I navigate to the published Function App in Azure portal and navigate to Functions, the list is also empty.
I saw postings with some hacks (send some HTTP post messages to related URLs), but it did not help.
I also tried the solution from here (https://stackoverflow.com/questions/74846943/azure-function-published-to-app-from-cli-not-listed-under-functions) but it did not help either.
The CLI versions that I have installed are the latest: azure-cli 2.44.1, func 4.0.4915.
Thanks.