Skip to content

Commit

Permalink
Merge pull request #25 from Azure-Samples/updates_for_local
Browse files Browse the repository at this point in the history
Fixing local deployment
  • Loading branch information
marlenezw authored Jul 23, 2024
2 parents 3ef1ab3 + e4298e2 commit 6be2ab0
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 11 deletions.
10 changes: 0 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,16 +78,6 @@ You can run this template virtually by using GitHub Codespaces. The button will
source venv/bin/activate
```

Windows venv activation:
```bash
cd backend
python3 -m venv venv
# In cmd.exe
venv\Scripts\activate.bat
# In PowerShell
venv\Scripts\Activate.ps1
```

Install dependencies with poetry:
```bash
poetry install
Expand Down
2 changes: 1 addition & 1 deletion infra/main.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ module openAiRoleUser './shared/role.bicep' = if (createRoleForUser && createAzu
}
}

module openAiRoleBackend './shared/role.bicep' = if (createAzureOpenAi) {
module openAiRoleBackend './shared/role.bicep' = if (createAzureOpenAi && !createRoleForUser) {
scope: rg
name: 'openai-role-backend'
params: {
Expand Down

0 comments on commit 6be2ab0

Please sign in to comment.