- Added `repomix-output.md` to `.gitignore` to exclude output files from version control. - Updated `repomix.config.json` to include the `support/` directory in the include paths. - Enhanced `TranscriptComponent` to improve search functionality with a debounce mechanism for input. - Refactored search logic to filter visible segments based on the search query, ensuring better user experience. - Updated `Meeting` and `Annotation` entities to use `utc_now()` for consistent UTC-aware timestamps. - Introduced new repository protocols for `DiarizationJob` and `Preferences` to support additional functionalities. - Implemented in-memory persistence for repositories to facilitate testing and development without a database. - Added error handling and utility functions to streamline gRPC service responses and improve code maintainability.
41 lines
943 B
JSON
41 lines
943 B
JSON
{
|
|
"$schema": "https://repomix.com/schemas/latest/schema.json",
|
|
"input": {
|
|
"maxFileSize": 52428800
|
|
},
|
|
"output": {
|
|
"filePath": "repomix-output.md",
|
|
"style": "markdown",
|
|
"parsableStyle": true,
|
|
"fileSummary": true,
|
|
"directoryStructure": true,
|
|
"files": true,
|
|
"removeComments": true,
|
|
"removeEmptyLines": true,
|
|
"compress": false,
|
|
"topFilesLength": 5,
|
|
"showLineNumbers": false,
|
|
"truncateBase64": false,
|
|
"copyToClipboard": false,
|
|
"tokenCountTree": false,
|
|
"git": {
|
|
"sortByChanges": true,
|
|
"sortByChangesMaxCommits": 100,
|
|
"includeDiffs": false,
|
|
"includeLogs": false,
|
|
"includeLogsCount": 50
|
|
}
|
|
},
|
|
"include": ["src/", "tests/", "support/"],
|
|
"ignore": {
|
|
"useGitignore": true,
|
|
"useDefaultPatterns": true,
|
|
"customPatterns": []
|
|
},
|
|
"security": {
|
|
"enableSecurityCheck": true
|
|
},
|
|
"tokenCount": {
|
|
"encoding": "o200k_base"
|
|
}
|
|
} |