An open API service indexing awesome lists of open source software.

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.

Awesome Lists containing this project

README

          


Better Azure DevOps logo

Better Azure DevOps


Next.js 16
React 19
TypeScript 5
Tailwind CSS 4
shadcn/ui

## 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).