-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCODEOWNERS
More file actions
37 lines (29 loc) · 1.62 KB
/
CODEOWNERS
File metadata and controls
37 lines (29 loc) · 1.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# CODEOWNERS - Train with Joe
# This file defines code ownership for pull request reviews.
# See: https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners
# Default owners for everything in the repo
* @train-with-joe/core-team
# Backend (CDK infrastructure, Lambda functions, services)
/backend/ @train-with-joe/backend-team
/cdk.json @train-with-joe/backend-team
/build.mjs @train-with-joe/backend-team
# GraphQL schema changes need backend review
/backend/src/gql-schemas/ @train-with-joe/backend-team
# Frontend (Flutter app)
/frontend/ @train-with-joe/frontend-team
# Angular landing pages
/join_page/ @train-with-joe/frontend-team
/competitors_page/ @train-with-joe/frontend-team
/profile_cards/ @train-with-joe/frontend-team
# CI/CD and GitHub config
/.github/ @train-with-joe/devops-team
/scripts/ @train-with-joe/devops-team
# Documentation
/documentation/ @train-with-joe/core-team
README.md @train-with-joe/core-team
# Shared config (linting, formatting, testing)
/eslint.config.mjs @train-with-joe/core-team
/.prettierrc @train-with-joe/core-team
/vitest.config.ts @train-with-joe/core-team
/tsconfig.json @train-with-joe/core-team
/package.json @train-with-joe/core-team