In my config.py file, I have this and I need it in order to run my function app.
'headers' : {'Content-Type': 'application/x-www-form-urlencoded', 'Cache-Control': 'no-cache'},
'locallogdir': r'',
'azure_config' : {
'driver' : '{ODBC Driver 17 for SQL Server}',
'server' : '',
'UID' : '',
'PWD' : '',
'database' : ''
},
Where/how would I put it into my Azure FunctionApp? Does it go into the settings.json and if so, how? I tried to put it in there and it didn't work.