| 1234567891011121314151617181920 |
- # CODEOWNERS - Defines code owners who will be requested for review
- # See: https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners
- # Default owner for everything
- * @maziggy
- # Backend code
- /backend/ @maziggy
- # Frontend code
- /frontend/ @maziggy
- # Infrastructure and deployment
- /Dockerfile* @maziggy
- /docker-compose*.yml @maziggy
- /.github/ @maziggy
- # Documentation
- /*.md @maziggy
- /docs/ @maziggy
|