Contributing
Getting Started
- Fork the repository and clone your fork locally.
- Follow the setup steps in Backend and Frontend.
- Create a feature branch from
main.
Development Workflow
- Make your changes with tests.
- Run
go test ./...(backend) and the Playwright E2E suite (frontend) - Open a pull request against
main.
Code Style
Backend: Standard Go formatting (gofmt). Follow existing controller and service patterns with thin controllers, logic in services, always scope queries by user_id.
Frontend: TypeScript strict mode and MUI for all UI components. All user-facing strings through i18next. Custom hooks for data fetching, not inline useEffect + fetch.
Pull Requests
- Keep PRs focused with one feature or fix per PR.
- AI tools may assist coding but you are responsible for the code quality. Do not open hands-off vibe-coded PRs. In those cases rather open a feature request instead.
- Describe what changed and why, not how.
Reporting Issues
Open an issue on GitHub. Try to include steps to reproduce for bugs. Use the feature request template for new ideas.