I am running a nestJS app on an Azure Linux AppService. I have added Application Settings within the appService, but I can't seem to get the app to pull through the value.
one of the appSettings is process.env.DB_Host
with value mysqlserveraddress
but when the app starts it says it cannot connect to process.env.DB_Host
rather than the mysqlserveraddress
How do I pass these values in?
Thanks
Tommy