I am new to Azure functions and I am using Azure Function app v3 for my project.
Basically I have to create a empty directory in bin
but I am getting error as my function app is running in read only more(not sure why)
Your app is currently in read only mode because you are running from a package file. To make any changes update the content in your zip file and WEBSITE_RUN_FROM_PACKAGE app setting
.
So after I deleted WEBSITE_RUN_FROM_PACKAGE: 1
from `Application configuration but I am not able to see my deployed functions.
when I redeploy it by default WEBSITE_RUN_FROM_PACKAGE: 1
is getting deployed.
Can you please help me how to make function app read and write
because I want to create folder in kudus where I have to store my file at run time.
Any response is greatly appreciated. Thanks in advance.