Thank you for your interest in contributing to Rollout.io.
As a Final Year IT Capstone Project built by students at Government Engineering College, Gandhinagar, we welcome and appreciate contributions of all kinds, including bug fixes, query optimizations, microservice refactoring, and new feature additions.
- Please check the existing Issues tab to ensure the bug or feature has not already been reported.
- If it is new, open a new issue. Please include:
- A clear, descriptive title.
- Steps to reproduce the issue.
- Expected versus actual behavior.
- Relevant logs or screenshots.
To contribute code, please follow this workflow:
- Fork the repository to your own GitHub account.
- Clone your fork locally:
git clone https://github.com/YOUR-USERNAME/Rollout.io.git
- Create a branch for your changes using a clean, descriptive name:
git checkout -b feature/amazing-new-feature # or git checkout -b fix/resolve-caching-bug - Implement your changes and commit them with clean, descriptive commit messages.
- Push your branch to GitHub:
git push origin feature/amazing-new-feature
- Open a Pull Request (PR) against our development or main branch.
To facilitate a smooth review process:
- Keep it Focused: A single PR should address a single issue or feature.
- Reference Issues: If your PR resolves an open issue, link it in the PR description (e.g.,
Closes #12). - Code Style:
- For Java backend services, follow standard Java camelCase naming conventions and include Javadocs on major classes and methods.
- For React/JavaScript code, use modern ES6 functional syntax.
- Academic Context: Because this is a graded academic project, we may request clarifications to thoroughly understand the changes before merging.
The project consists of multiple microservices:
- Backend: Spring Boot, Eureka Registry, Config Server, API Gateway, RabbitMQ, and MongoDB.
- Frontend: Vite + React Dashboard.
You can set up the local ecosystem using Docker Compose:
# Navigate to the deployment directory
cd DEPLOY
# Start all infrastructure and microservices
docker-compose up -dIf you need help or wish to discuss major architectural changes, please:
- Open a GitHub Issue.
- Contact the team at rollout@paraglide.in.
Thank you for helping us improve this project.