From abc1c340fd9888653d0898bdc2529bb2cf30f612 Mon Sep 17 00:00:00 2001 From: Pamela Fox Date: Sat, 1 Jun 2024 08:07:23 -0700 Subject: [PATCH] Test without AAD --- README.md | 8 ++++---- infra/main.bicep | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 59382ee..94c208a 100644 --- a/README.md +++ b/README.md @@ -25,9 +25,9 @@ From a deployed Generations tab in Langfuse: Table of contents: * [Opening this project](#opening-this-project) - * [GitHub Codespaces](#github-codespaces) - * [VS Code Dev Containers](#vs-code-dev-containers) - * [Local environment](#local-environment) + * [GitHub Codespaces](#github-codespaces) + * [VS Code Dev Containers](#vs-code-dev-containers) + * [Local environment](#local-environment) * [Deploying to Azure](#deploying-to-azure) * [Disclaimer](#disclaimer) @@ -75,7 +75,7 @@ A related option is VS Code Dev Containers, which will open the project in your ```shell pip install -r requirements.txt ``` - + 5. Open a terminal window inside the project folder. ## Deploying to Azure diff --git a/infra/main.bicep b/infra/main.bicep index 83c3f58..bd8843d 100644 --- a/infra/main.bicep +++ b/infra/main.bicep @@ -162,10 +162,10 @@ module containerApp 'core/host/container-app.bicep' = { } ] secrets: { - 'databasepassword': databasePassword - 'nextauthsecret': nextAuthSecret - 'salt': salt - 'authclientsecret': authClientSecret + databasepassword: databasePassword + nextauthsecret: nextAuthSecret + salt: salt + authclientsecret: useAuthentication ? authClientSecret : 'unset' } } }