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
Parallel executionWhen multiple triggering events occur faster than a single-threaded function runtime can process them, the runtime may invoke the function multiple times in parallel. If a function app is using the Consumption hosting plan, the function app could scale out automatically.
Shared storage accountsIt's possible for multiple function apps to share the same storage account without any issues. For example, in Visual Studio you can develop multiple apps using the Azure Storage Emulator.
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.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With