Skip to content

Latest commit

 

History

History
35 lines (24 loc) · 618 Bytes

File metadata and controls

35 lines (24 loc) · 618 Bytes

Contributing

Prerequisites

  • Bun
  • Supabase Postgres database

Setup

bun install
cp .env.example .env
# Fill in your .env values
bun run dev

Running Tests

bun test

There are 142 integration tests covering all API endpoints.

Submitting Changes

  1. Fork the repo
  2. Create a feature branch (git checkout -b my-feature)
  3. Make your changes
  4. Run bun test and bun run typecheck to verify nothing is broken
  5. Open a pull request against main

Code Style

This project uses Biome for linting. Run bun run lint to check.