Skip to content

Latest commit

 

History

History
41 lines (26 loc) · 1.12 KB

File metadata and controls

41 lines (26 loc) · 1.12 KB

Contributing

We welcome contributions to this project! Here's how you can help.

Filing Issues

Found a bug or have a feature request? Open an issue with a clear description and steps to reproduce.

Submitting Pull Requests

  1. Fork the repository
  2. Create a branch for your change (git checkout -b my-feature)
  3. Make your changes and commit with a descriptive message
  4. Push to your fork and open a Pull Request

Development Setup

The easiest way to run locally is with azd app:

azd app run

The prerun hook automatically retrieves your GITHUB_TOKEN from the gh CLI.

Or run services manually:

export GITHUB_TOKEN=$(gh auth token)
cd src/api && pnpm install && pnpm dev   # API server
cd src/web && pnpm install && pnpm dev   # Frontend dev server (in a separate terminal)

Code Style

  • Write in TypeScript
  • Follow existing patterns and conventions in the codebase

Code of Conduct

This project follows the Microsoft Open Source Code of Conduct. Please read it before contributing.