This repository stores the centralized configuration files for the Hotel Review System.
config-repo/
├── auth-service.yml
├── user-service.yml
├── hotel-service.yml
├── review-service.yml
├── api-gateway.yml
└── eureka-service.yml
- Runs on port 8888.
- Backed by Spring Cloud Config Server.
- Each microservice loads its configuration based on
spring.application.name. - Example:
user-service→user-service.yml.
- Centralized management of DB, JPA, Eureka, and logging configs.
- Easy environment promotion (dev → staging → prod) via Git branches.
- Supports encrypted secrets or Vault integration in future.