Development¶
Resources for developers contributing to the project.
Development Guides¶
- Setup - Development environment setup
- Testing - Writing and running tests
- Database Migrations - Managing database schema
- Code Quality - Linting, formatting, and best practices
- Contributing - Contribution guidelines
Quick Commands¶
```bash
Run tests¶
make test
Start development server¶
make serve
Run linter¶
make ruff-check
Create migration¶
make migration msg="add new field" ```