|
| 1 | +# Changelog |
| 2 | + |
| 3 | +All notable changes to this project will be documented in this file. |
| 4 | + |
| 5 | +## [1.0.0] - 2024-01-XX |
| 6 | + |
| 7 | +### Added |
| 8 | +- Complete Docker Compose setup with RabbitMQ, Kafka, and Zookeeper |
| 9 | +- REST API endpoints for message production |
| 10 | +- Consumer services for both RabbitMQ and Kafka |
| 11 | +- Example scripts for testing and load testing |
| 12 | +- Comprehensive documentation and README |
| 13 | +- GitHub Actions CI/CD pipeline |
| 14 | +- Health checks for all services |
| 15 | +- Logging with Winston |
| 16 | +- Environment configuration with dotenv |
| 17 | + |
| 18 | +### Features |
| 19 | +- **Message Brokers**: RabbitMQ and Apache Kafka integration |
| 20 | +- **REST API**: HTTP endpoints for message production |
| 21 | +- **Docker Support**: Full containerization with docker-compose |
| 22 | +- **Examples**: Ready-to-use demonstration scripts |
| 23 | +- **Testing**: Automated test suite and load testing |
| 24 | +- **Monitoring**: Service health checks and logging |
| 25 | +- **CI/CD**: GitHub Actions workflow |
| 26 | + |
| 27 | +### Technical Stack |
| 28 | +- Node.js 18+ |
| 29 | +- Express.js for REST API |
| 30 | +- RabbitMQ with amqplib |
| 31 | +- Apache Kafka with kafkajs |
| 32 | +- Docker & Docker Compose |
| 33 | +- Winston for logging |
| 34 | +- Axios for HTTP requests |
| 35 | + |
| 36 | +### Project Structure |
| 37 | +``` |
| 38 | +├── config/ # Configuration files |
| 39 | +├── services/ # Core services (producers/consumers) |
| 40 | +├── examples/ # Example scripts |
| 41 | +├── test/ # Test files |
| 42 | +├── scripts/ # Utility scripts |
| 43 | +├── .github/workflows/ # CI/CD workflows |
| 44 | +├── docker-compose.yml # Docker services |
| 45 | +├── Dockerfile # App container |
| 46 | +└── README.md # Documentation |
| 47 | +``` |
0 commit comments