Vijay Ande
Vijay Ande

Reputation: 109

python timer trigger errors no job functions found

I have created an azure timer trigger function using python, IDE as VSCode. My project folder structure is as shown below. enter image description here

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

Answers (1)

suziki
suziki

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.

enter image description here

enter image description here

Upvotes: 0

Related Questions