Description:
docker-compose.yml starts Redis and the backend depends_on: redis, but:
pom.xml has no Redis dependency (e.g. spring-boot-starter-data-redis)
- There is no
application-docker.yml or Redis configuration in the backend
So the backend never connects to Redis. Docs and architecture describe Redis for caching/sessions; the code does not implement it.
Acceptance criteria:
Description:
docker-compose.ymlstarts Redis and the backenddepends_on: redis, but:pom.xmlhas no Redis dependency (e.g.spring-boot-starter-data-redis)application-docker.ymlor Redis configuration in the backendSo the backend never connects to Redis. Docs and architecture describe Redis for caching/sessions; the code does not implement it.
Acceptance criteria:
docker-compose.ymland update docs until Redis is implemented