Ryan Burnham
Ryan Burnham

Reputation: 593

Azure functions in sub folders

Is it possible to group your azure functions into subfolders. It seems like the location of your function.json needs to be

/{functionName}/function.json

I'd like to have something like this

/{category}/{functionName}/function.json

When i try this though the function is not detected

Upvotes: 8

Views: 3415

Answers (1)

Matt Mason
Matt Mason

Reputation: 2726

Unfortunately you can't change the location of function.json.

However, you could use the scriptFile property of function.json to refer to your function code files in another location.

Upvotes: 7

Related Questions