About This Page
This page is part of the Azure documentation. It contains code examples and configuration instructions for working with Azure services.
Bias Analysis
Bias Types:
⚠️
windows_first
⚠️
powershell_heavy
Summary:
The documentation provides environment variable setup instructions for Windows Command Prompt and PowerShell before mentioning the equivalent Linux/macOS bash command. Windows-specific tools (setx, PowerShell) are described in detail, with Linux/macOS instructions grouped together and placed last. There are no missing Linux examples, but the ordering and detail favor Windows users.
Recommendations:
- Present environment variable instructions for Linux/macOS first or in parallel with Windows, rather than always listing Windows first.
- Use tabbed or side-by-side formatting for OS-specific instructions to give equal prominence to Linux/macOS and Windows.
- Briefly explain any Windows-specific tools (like setx) and provide context for Linux/macOS users if similar tools are needed.
- Ensure that any troubleshooting or advanced sections also provide Linux/macOS guidance where relevant.
- Consider including a table summarizing environment variable commands for all platforms at the start of the section.
Create pull request
Flagged Code Snippets
setx AZURE_APPCONFIG_ENDPOINT "<endpoint-of-your-app-configuration-store>"
$Env:AZURE_APPCONFIG_ENDPOINT = "<endpoint-of-your-app-configuration-store>"
setx AZURE_APPCONFIG_CONNECTION_STRING "<connection-string-of-your-app-configuration-store>"
$Env:AZURE_APPCONFIG_CONNECTION_STRING = "<connection-string-of-your-app-configuration-store>"