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 (cmd and PowerShell) before Linux/macOS, and includes detailed Windows-specific commands (setx, PowerShell) alongside bash. While Linux/macOS commands are present, the ordering and emphasis favor Windows. There are no Linux-specific deployment or tooling examples, but the bias is mainly in the order and detail of environment variable instructions.
Recommendations:
- Present environment variable instructions for all platforms in parallel tables or grouped tabs, rather than listing Windows first.
- Avoid giving extra detail (such as 'restart the command prompt') only for Windows; provide parity for Linux/macOS (e.g., 'restart your terminal').
- Where possible, use cross-platform instructions or highlight platform differences equally.
- Consider including Linux/macOS-specific deployment or troubleshooting tips if Windows-specific ones are present.
- If referencing editors or tools, ensure Linux/macOS options are mentioned with equal prominence.
Create pull request
Flagged Code Snippets
setx APP_CONFIGURATION_ENDPOINT "endpoint-of-your-app-configuration-store"
$Env:APP_CONFIGURATION_ENDPOINT = "endpoint-of-your-app-configuration-store"
setx APP_CONFIGURATION_CONNECTION_STRING "connection-string-of-your-app-configuration-store"
$Env:APP_CONFIGURATION_CONNECTION_STRING = "connection-string-of-your-app-configuration-store"