Reputation: 109
I have created an azure timer trigger function using python, IDE as VSCode. My project folder structure is as shown below.
As you can see on the "Terminal" it is giving me an error saying "No job functions found". This is because my "Dockerfile" and "requirements.txt" are inside folder "setup" which is inside folder(TimerTrigger1). If these 2 files are at the project root it works fine. However I need a folder structure similar to the one shown in the screen shot above. As I would end up creating multiple functions each in a separate folder like the one shown in the screenshot(TimerTrigger1)
Please share your thoughts. Thanks for your help in advance.
Upvotes: -1
Views: 390
Reputation: 14113
First, the structure of the function app is impossible to change.
Second, those configuration files do not affect your creation of multiple functions. Just press F1 and select create new function.
Upvotes: 0