-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCODEOWNERS
More file actions
125 lines (87 loc) · 3.88 KB
/
Copy pathCODEOWNERS
File metadata and controls
125 lines (87 loc) · 3.88 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
# =========================================================
# Starmus Audio Recorder
# Starisian Technologies
#
# CODEOWNERS
#
# Defines mandatory reviewers for protected areas of the
# audio recording and annotation system.
#
# Areas protected:
# - audio capture pipeline
# - waveform / spectrogram logic
# - export pipeline
# - WordPress plugin core
# - REST interfaces
# =========================================================
# ---------------------------------------------------------
# Default Owner
# ---------------------------------------------------------
* @maximilliangroup
# ---------------------------------------------------------
# Core Plugin Architecture
# These files control the WordPress plugin behavior.
# ---------------------------------------------------------
/starmus-audio-recorder.php @maximilliangroup
/src/StarmusAudioRecorder.php @maximilliangroup
/src/Core/ @maximilliangroup
/src/prosody/ @maximilliangroup
# ---------------------------------------------------------
# Audio Recording Engine
# Controls microphone capture and audio buffering.
# ---------------------------------------------------------
#/src/Audio/Recorder/ @maximilliangroup
#/src/Audio/Capture/ @maximilliangroup
# ---------------------------------------------------------
# Waveform & Spectrogram Engine
# Visualization layer (WaveSurfer integration).
# ---------------------------------------------------------
#/src/Audio/Waveform/ @maximilliangroup
#/src/Audio/Spectrogram/ @maximilliangroup
# ---------------------------------------------------------
# Audio Processing Pipeline
# Silence detection, trimming, segmentation, mastering.
# ---------------------------------------------------------
/src/services/ @maximilliangroup
# ---------------------------------------------------------
# Export System
# WAV generation and file packaging.
# ---------------------------------------------------------
# ---------------------------------------------------------
# REST API
# Handles upload and processing requests.
# ---------------------------------------------------------
#/src/API/ @maximilliangroup
# ---------------------------------------------------------
# Frontend JavaScript
# Recording UI, waveform interaction, region editing.
# ---------------------------------------------------------
/assets/js/ @maximilliangroup
# ---------------------------------------------------------
# Styles
# UI appearance for recording interface.
# ---------------------------------------------------------
/assets/css/ @maximilliangroup
# ---------------------------------------------------------
# Build & Infrastructure
# ---------------------------------------------------------
/tests @maximilliangroup
/.github/workflows/ @maximilliangroup
# ---------------------------------------------------------
# Documentation
# ---------------------------------------------------------
/docs/ @maximilliangroup
README.md @maximilliangroup
# ---------------------------------------------------------
# Dependency Management
# ---------------------------------------------------------
composer.json @maximilliangroup
composer.lock @maximilliangroup
package.json @maximilliangroup
package-lock.json @maximilliangroup
# ---------------------------------------------------------
# GitHub Governance
# ---------------------------------------------------------
.github/CODEOWNERS @maximilliangroup
.github/PULL_REQUEST_TEMPLATE.md @maximilliangroup
.github/ISSUE_TEMPLATE/ @maximilliangroup