A robust Spring Boot backend system for managing vaccination centers, appointments, doctors, and doses with full DevOps automation.
Category | Features |
---|---|
👥 User Management | Registration, profile management, appointment history |
🏥 Center Management | Add/update vaccination locations & availability |
🩺 Doctor Portal | Healthcare professional onboarding & scheduling |
📅 Appointments | Slot booking with email/SMS reminders |
💊 Dose Tracking | Record administered vaccines with batch numbers |
🔌 API Integration | 20+ REST APIs for seamless third-party integration |
⚙️ DevOps | Full CI/CD pipeline with Docker, Kubernetes, and Jenkins automation |
Backend:
DevOps:
Benefit | Description |
---|---|
🤖 Zero Manual Deployments | Fully automated Jenkins pipeline from code commit to production |
📦 Consistency | Docker ensures identical environments across all stages |
⚡ Scalability | Kubernetes auto-scales during high traffic periods |
🔄 High Availability | Self-healing when containers crash |
🔒 Security | Isolated containers prevent environment mismatch issues |
git clone https://github.com/Abhaytomar2004/ImmunizationTracker.git
cd ImmunizationTracker
mvn clean install
# Configure src/main/resources/application.properties
mvn spring-boot:run
Access APIs at http://localhost:8081 🌐
Prerequisites:
Jenkins with Docker, JDK, Maven plugins
Docker Hub account
Minikube (or cloud Kubernetes)
Steps:
Jenkins Pipeline will automatically:
Build → Test → Dockerize → Push to Docker Hub → Deploy to Kubernetes
kubectl apply -f k8s/mysql-pv.yaml
kubectl apply -f k8s/mysql-deployment.yaml
kubectl apply -f k8s/deployment.yaml
kubectl apply -f k8s/service.yaml
Access the live app:
kubectl get services
# Open http://<EXTERNAL-IP>:80
ImmunizationTracker/ ├── src/ # Spring Boot source code │ ├── main/java/ # Controllers, Services, Models │ └── resources/ # Configuration files ├── k8s/ # Kubernetes configurations │ ├── deployment.yaml # App deployment config │ └── mysql-pv.yaml # Persistent volume for DB ├── Dockerfile # Docker image configuration └── Jenkinsfile # CI/CD Pipeline definition
We welcome contributions! Here's how you can help:
🐛 Report Bugs: Open a GitHub issue
💡 Suggest Features: Submit a feature proposal
Fork → Improve → Submit PR
High-priority areas:
Add GitHub Actions CI
Implement Helm charts
Enhance monitoring with Prometheus/Grafana
MIT
Get started by cloning the repo or deploying via Jenkins! 🚀