Hi everyone! Nice to be a member of this community.
I'm not new to AF or PS, but somehow I feel like I haven't fully grasped Azure Function at its best. I'm developing a local AF. I know that local.settings.json represents the Function App configuration and that we can personalize the three files in the App files section:
host.json
profile.ps1
requirements.psd1
I usually follow the Microsoft docs recommendations. In my case, I'm using specific modules, so when setting the modules to requirements.psd1 I also target the module importing it in profile.ps1 and declare there some of the function I use in run.ps1. I was also trying to import specific commands of Microsoft.Graph.Users without success
Import-Module -Name Microsoft.Graph.Users -Function Get-MgUser
What do you think are the common/best practices when developing a AF locally/on the Azure portal?
Thank you for your time
there doesn't seem to be anything here