diff --git a/docs/AddAuthentication.md b/docs/AddAuthentication.md index a986abc8..a82e46cb 100644 --- a/docs/AddAuthentication.md +++ b/docs/AddAuthentication.md @@ -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/" 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: diff --git a/docs/LocalDevelopmentSetup.md b/docs/LocalDevelopmentSetup.md index 7f711694..f065ecf5 100644 --- a/docs/LocalDevelopmentSetup.md +++ b/docs/LocalDevelopmentSetup.md @@ -252,6 +252,13 @@ az role assignment create \ --role "Cognitive Services OpenAI User" \ --scope /subscriptions//resourceGroups//providers/Microsoft.CognitiveServices/accounts/ ``` +```bash +# Assign Azure AI User role +az role assignment create \ + --assignee \ + --role "Azure AI User" \ + --scope /subscriptions//resourceGroups//providers/Microsoft.CognitiveServices/accounts/ +``` #### Other Required Roles Depending on the features you use, you may also need: diff --git a/src/frontend/package-lock.json b/src/frontend/package-lock.json index 1d9855cd..a60d318e 100644 --- a/src/frontend/package-lock.json +++ b/src/frontend/package-lock.json @@ -20,7 +20,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", @@ -4321,14 +4321,14 @@ } }, "node_modules/axios": { - "version": "1.13.5", - "resolved": "https://registry.npmjs.org/axios/-/axios-1.13.5.tgz", - "integrity": "sha512-cz4ur7Vb0xS4/KUN0tPWe44eqxrIu31me+fbang3ijiNscE129POzipJJA6zniq2C/Z6sJCjMimjS8Lc/GAs8Q==", + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.15.0.tgz", + "integrity": "sha512-wWyJDlAatxk30ZJer+GeCWS209sA42X+N5jU2jy6oHTp7ufw8uzUTVFBX9+wTfAlhiJXGS0Bq7X6efruWjuK9Q==", "license": "MIT", "dependencies": { "follow-redirects": "^1.15.11", "form-data": "^4.0.5", - "proxy-from-env": "^1.1.0" + "proxy-from-env": "^2.1.0" } }, "node_modules/balanced-match": { @@ -7386,10 +7386,13 @@ } }, "node_modules/proxy-from-env": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", - "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", - "license": "MIT" + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-2.1.0.tgz", + "integrity": "sha512-cJ+oHTW1VAEa8cJslgmUZrc+sjRKgAKl3Zyse6+PV38hZe/V6Z14TbCuXcan9F9ghlz4QrFr2c92TNF82UkYHA==", + "license": "MIT", + "engines": { + "node": ">=10" + } }, "node_modules/punycode": { "version": "2.3.1", diff --git a/src/frontend/package.json b/src/frontend/package.json index 88f6c95f..2b6706ed 100644 --- a/src/frontend/package.json +++ b/src/frontend/package.json @@ -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",