Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/AddAuthentication.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ Follow the [directions in the documentation ](https://learn.microsoft.com/en-us/
REACT_APP_MSAL_AUTH_AUTHORITY="https://login.microsoftonline.com/<your tenant ID>"
REACT_APP_MSAL_REDIRECT_URL="/"
REACT_APP_MSAL_POST_REDIRECT_URL="/"
ENV ENABLE_AUTH=true
ENABLE_AUTH=true
```

For local debugging, configure your local variables as follows:
Expand Down
7 changes: 7 additions & 0 deletions docs/LocalDevelopmentSetup.md
Original file line number Diff line number Diff line change
Expand Up @@ -252,6 +252,13 @@ az role assignment create \
--role "Cognitive Services OpenAI User" \
--scope /subscriptions/<subscription-id>/resourceGroups/<resource-group-name>/providers/Microsoft.CognitiveServices/accounts/<azure-openai-name>
```
```bash
# Assign Azure AI User role
az role assignment create \
--assignee <aad-user-upn> \
--role "Azure AI User" \
--scope /subscriptions/<subscription-id>/resourceGroups/<resource-group-name>/providers/Microsoft.CognitiveServices/accounts/<azure-openai-name>
```

#### Other Required Roles
Depending on the features you use, you may also need:
Expand Down
21 changes: 12 additions & 9 deletions src/frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"@tailwindcss/vite": "^4.1.18",
"@types/react-router-dom": "^5.3.3",
"autoprefixer": "^10.4.24",
"axios": "^1.13.5",
"axios": "^1.15.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.563.0",
Expand Down
Loading