This commit introduces a `Makefile` to standardize the build, test, and linting process, as suggested in the `TODO.md` file.
The `Makefile` includes targets for `lint`, `test`, and `test-integration`.
The `.github/workflows/ci.yml` file has been updated to use the `make test-integration` target, simplifying the CI configuration.
The `.github/workflows/cd.yml` file has been updated to be ready for deployment to a staging environment. It now calls a `make deploy-staging` target, which serves as a placeholder for the actual deployment script.
This work addresses the 'Establish a CI/CD Pipeline' task from the `TODO.md`.
- Core Go application with GraphQL API using gqlgen
- Comprehensive data models for literary works, authors, translations
- Repository pattern with caching layer
- Authentication and authorization system
- Linguistics analysis capabilities with multiple adapters
- Vector search integration with Weaviate
- Docker containerization support
- Python data migration and analysis scripts
- Clean architecture with proper separation of concerns
- Production-ready configuration and middleware
- Proper .gitignore excluding vendor/, database files, and build artifacts