Skip to content

Commit

Permalink
Merge pull request #13 from Azure-Samples/noauth
Browse files Browse the repository at this point in the history
Fix non-Entra deploys
  • Loading branch information
pamelafox authored Jun 1, 2024
2 parents c2733d1 + abc1c34 commit 17d3666
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions infra/main.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -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'
}
}
}
Expand Down

0 comments on commit 17d3666

Please sign in to comment.