-
Notifications
You must be signed in to change notification settings - Fork 308
fixes issue with error printing and credentials handling #177
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
fixes issue with error printing and credentials handling
|
@microsoft-github-policy-service agree
On 28 Aug 2025, at 6:44 PM, microsoft-github-policy-service[bot] ***@***.***> wrote:
@microsoft-github-policy-service agree
|
|
@awartany the command you issued was incorrect. Please try again. Examples are: and |
| # React build output | ||
| src/api/static/react/ | ||
| .vscode/launch.json | ||
| .DS_Store |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
May I ask why?
| "dev": "vite", | ||
| "build": "tsc && vite build", | ||
| "setup": "npm install -g [email protected] && pnpm install && pnpm build", | ||
| "setup": "pnpm install && pnpm build", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This have been resolved in the latest code.
| "@vitejs/plugin-react": "4.4.1", | ||
| "clsx": "2.1.1", | ||
| "copy-to-clipboard": "^3.3.3", | ||
| "prismjs": "1.30.0", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This have been resolved in the latest code.
| "remark-supersub": "^1.0.0", | ||
| "vite": "6.3.4", | ||
| "prismjs": "1.30.0" | ||
| "setup": "^0.0.3", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should have been resolved in the latest code.
| search_mgr = SearchIndexManager( | ||
| endpoint=endpoint, | ||
| credential=creds, | ||
| credential=AzureKeyCredential(search_api_key), # <-- Use API key here |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We shouldn't store api key as env var for security unless the key is set. The latest code is using AAD. So this isn't necessary.
fixes issue with error printing and credentials handling