https://github.com/austin-smith/better-azure-devops
Azure DevOps, but better.
https://github.com/austin-smith/better-azure-devops
azure-devops devops nextjs
Last synced: 28 days ago
JSON representation
Azure DevOps, but better.
- Host: GitHub
- URL: https://github.com/austin-smith/better-azure-devops
- Owner: austin-smith
- Created: 2026-03-28T05:21:51.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2026-05-22T21:13:49.000Z (29 days ago)
- Last Synced: 2026-05-22T21:31:05.098Z (29 days ago)
- Topics: azure-devops, devops, nextjs
- Language: TypeScript
- Homepage:
- Size: 881 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Agents: AGENTS.md
Awesome Lists containing this project
README
Better Azure DevOps
## About
Better Azure DevOps is a small web client for viewing and interacting with Azure DevOps work items.
## Setup
### 1. Install dependencies
```bash
pnpm install
```
### 2. Install Azure CLI
#### macOS
```bash
brew update && brew install azure-cli
```
#### Windows
```powershell
winget install --exact --id Microsoft.AzureCLI
```
#### Ubuntu/Debian
```bash
curl -sL https://aka.ms/InstallAzureCLIDeb | sudo bash
```
For other platforms, see [Install Azure CLI](https://learn.microsoft.com/en-us/cli/azure/install-azure-cli?view=azure-cli-latest).
### 3. Configure the app
Copy `.env.example` to `.env.local` and set:
```bash
AZURE_DEVOPS_ORG_URL=https://dev.azure.com/your-org
```
### 4. Sign in
#### macOS and Linux shells
```bash
AZURE_CONFIG_DIR=.azure az login
```
#### Windows PowerShell
```powershell
$env:AZURE_CONFIG_DIR=".azure"
az login
```
## Run
```bash
pnpm dev
```
Open [http://localhost:3002](http://localhost:3002).