From project root (/):
# Start PostgreSQL only
docker-compose up -d postgresFrom backend/:
./gradlew bootRunOr just run from IDE
From project root (/):
docker-compose up -d --buildcurl http://localhost:8080/api/time-series
curl -X POST http://localhost:8080/api/time-series \
-H "Content-Type: application/json" \
-d '{"value": 1500.0, "unit": "EUR", "modelIdentifier": "MILP", "timestamp": "2025-05-09T10:00:00+00"}'For local runs Swagger UI is available at http://localhost:8080/swagger-ui.html (excluded for later prod deployments)