-
-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathCODEOWNERS
More file actions
58 lines (47 loc) · 1.41 KB
/
Copy pathCODEOWNERS
File metadata and controls
58 lines (47 loc) · 1.41 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# CODEOWNERS - Auto-assign reviewers based on file paths
# Format: path/to/file @username @team-name
# See: https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners
# Default owner for everything
* @aviralgarg05
# Rust Core Components
/nexum_core/ @aviralgarg05
/nexum_core/src/storage/ @aviralgarg05
/nexum_core/src/executor/ @aviralgarg05
/nexum_core/src/sql/ @aviralgarg05
/nexum_core/src/catalog/ @aviralgarg05
/nexum_core/src/bridge/ @aviralgarg05
# CLI
/nexum_cli/ @aviralgarg05
# Python AI Components
/nexum_ai/ @aviralgarg05
/nexum_ai/model_manager.py @aviralgarg05
/nexum_ai/optimizer.py @aviralgarg05
/nexum_ai/rl_agent.py @aviralgarg05
/nexum_ai/translator.py @aviralgarg05
# Build Configuration
/Cargo.toml @aviralgarg05
/Cargo.lock @aviralgarg05
**/Cargo.toml @aviralgarg05
# Python Dependencies
/nexum_ai/requirements.txt @aviralgarg05
# CI/CD & GitHub Configuration
/.github/ @aviralgarg05
/.github/workflows/ @aviralgarg05
/.github/dependabot.yml @aviralgarg05
# Documentation
/README.md @aviralgarg05
/CHANGELOG.md @aviralgarg05
/CONTRIBUTING.md @aviralgarg05
/CODE_OF_CONDUCT.md @aviralgarg05
/SECURITY.md @aviralgarg05
/TESTING.md @aviralgarg05
/ROADMAP.md @aviralgarg05
*.md @aviralgarg05
# Tests
/tests/ @aviralgarg05
# Docker
/Dockerfile @aviralgarg05
/docker-compose.yml @aviralgarg05
# Scripts
*.sh @aviralgarg05
/demo.sh @aviralgarg05