Configuration¶
azure-functions-python-cookbook is a documentation and example project, not a library. There is no runtime configuration API.
For configuring the tools used in recipe examples, refer to the relevant Azure documentation:
Local Development Configuration¶
When running recipes locally, set up local.settings.json at the project root:
{
"IsEncrypted": false,
"Values": {
"AzureWebJobsStorage": "UseDevelopmentStorage=true",
"FUNCTIONS_WORKER_RUNTIME": "python"
}
}
Each recipe's README notes any additional environment variables required.
Recipe-Specific Configuration¶
See individual recipe documentation under Recipes for trigger-specific and binding-specific configuration examples.