tercul-backend/internal/app
google-labs-jules[bot] 0a27c84771 This commit introduces a series of significant improvements to bring the codebase closer to a production-ready state.
Key changes include:

- **Architectural Refactoring (CQRS/DTOs):** Refactored the `work` and `translation` application services to use Data Transfer Objects (DTOs) for query responses. This separates the domain layer from the API layer, improving maintainability and performance.

- **Implemented Core Business Logic:** Implemented the `AnalyzeWork` command, which was previously a stub. This command now performs linguistic analysis on works and translations by calling the analytics service.

- **Dependency Injection Improvements:**
    - Refactored the configuration loading in `internal/platform/config/config.go` to use a local `viper` instance, removing the reliance on a global singleton.
    - Injected the `analytics.Service` into the `work.Service` to support the `AnalyzeWork` command.

- **Comprehensive Documentation:**
    - Created a new root `README.md` with a project overview, setup instructions, and architectural principles.
    - Added detailed `README.md` files to key packages (`api`, `analytics`, `auth`, `work`, `db`) to document their purpose and usage.

- **Improved Test Coverage:**
    - Added new unit tests for the refactored `work` and `translation` query handlers.
    - Added a new test suite for the `translation` queries, which were previously untested.
    - Added tests for the new `AnalyzeWork` command.
    - Fixed numerous compilation errors in the test suites caused by the refactoring.
2025-10-08 17:25:02 +00:00
..
analytics This commit introduces a series of significant improvements to bring the codebase closer to a production-ready state. 2025-10-08 17:25:02 +00:00
auth This commit introduces a series of significant improvements to bring the codebase closer to a production-ready state. 2025-10-08 17:25:02 +00:00
author refactor: Align codebase with DDD architecture to fix build 2025-10-03 01:17:53 +00:00
authz feat: Complete large-scale refactor and prepare for production 2025-10-07 11:09:37 +00:00
book Fix: Correct authorization logic in integration tests 2025-10-04 23:48:44 +00:00
bookmark Chore: Clean up lint warnings and improve code quality 2025-10-07 13:14:01 +00:00
category Refactor: Introduce service layer for application logic 2025-09-09 02:28:25 +00:00
collection This commit refactors the GraphQL layer to improve code quality and adhere to the project's target architecture. 2025-10-03 02:13:12 +00:00
comment Chore: Clean up lint warnings and improve code quality 2025-10-07 13:14:01 +00:00
contribution feat: Complete large-scale refactor and prepare for production 2025-10-07 11:09:37 +00:00
copyright feat: Complete large-scale refactor and prepare for production 2025-10-07 11:09:37 +00:00
like Chore: Clean up lint warnings and improve code quality 2025-10-07 13:14:01 +00:00
localization feat: Complete large-scale refactor and prepare for production 2025-10-07 11:09:37 +00:00
monetization feat: Complete large-scale refactor and prepare for production 2025-10-07 11:09:37 +00:00
search feat: Complete large-scale refactor and prepare for production 2025-10-07 11:09:37 +00:00
tag Refactor: Introduce service layer for application logic 2025-09-09 02:28:25 +00:00
translation This commit introduces a series of significant improvements to bring the codebase closer to a production-ready state. 2025-10-08 17:25:02 +00:00
user feat: Complete large-scale refactor and prepare for production 2025-10-07 11:09:37 +00:00
work This commit introduces a series of significant improvements to bring the codebase closer to a production-ready state. 2025-10-08 17:25:02 +00:00
.keep I have refactored the background jobs by moving all related logic from the syncjob/, linguistics/, and internal/enrich directories into the new internal/jobs/sync and internal/jobs/linguistics packages. I have also updated their package declarations to be consistent with their new locations. 2025-09-02 15:02:04 +00:00
app.go refactor(app): move composition root to main.go 2025-10-07 14:05:19 +00:00