diff --git a/README.md b/README.md index f6d33b0..290aa24 100644 --- a/README.md +++ b/README.md @@ -17,8 +17,8 @@ This Azure Function App fetches Azure App Registrations, checks for expiring sec 1. **Clone the repository:** ```sh - git clone https://github.com/OliPassey/AzAppRegistrationExpiry.git - cd AzAppRegistrationExpiry + git clone https://github.com/OliPassey/AzAppRegistrationExpiry.git + cd AzAppRegistrationExpiry ``` 2. **Create local dev environment & Install dependencies**: @@ -31,23 +31,23 @@ This Azure Function App fetches Azure App Registrations, checks for expiring sec 3. **Configure environment variables**: Create a local.settings.json file in the root of the function app directory with the following contents - { - "IsEncrypted": false, - "Values": { - "AzureWebJobsStorage": "", - "FUNCTIONS_WORKER_RUNTIME": "python", - "AZURE_CLIENT_ID": "", - "AZURE_CLIENT_SECRET": "", - "AZURE_TENANT_ID": "", - "SMTP_SERVER": "", - "SMTP_PORT": "", - "SMTP_USERNAME": "", - "SMTP_PASSWORD": "", - "FROM_EMAIL": "", - "FROM_NAME": "", - "TO_EMAIL": "" - } - } + { + "IsEncrypted": false, + "Values": { + "AzureWebJobsStorage": "", + "FUNCTIONS_WORKER_RUNTIME": "python", + "AZURE_CLIENT_ID": "", + "AZURE_CLIENT_SECRET": "", + "AZURE_TENANT_ID": "", + "SMTP_SERVER": "", + "SMTP_PORT": "", + "SMTP_USERNAME": "", + "SMTP_PASSWORD": "", + "FROM_EMAIL": "", + "FROM_NAME": "", + "TO_EMAIL": "" + } + } 4. **Run the function locally**: Use the Azure Functions Core Tools to run the function: