Can multiple azure functions be created in the same project? – Microsoft Q&A
Yes, you can have multiple functions inside the same functionApp. One thing is, the functions will share the same resources e.g., pricing plan, runtime version, storage, appInsights, deployment method, etc.
Our old function project
Lets add another function, for reading messages in the queue.
Create a new
\LocalFunctionQA> func new --name readcoin01queue --template "HTTP trigger" --authlevel "anonymous"
# Run it
LocalFunctionQA> func start
# Result
Functions:
coinfun01qa: [GET,POST] http://localhost:7071/api/coinfun01qa
readcoin01queue: [GET,POST] http://localhost:7071/api/readcoin01queue
And now there are two functions in the same project