This document provides instructions for running the H2Go API.
-
Build and run the application:
make docker-build make docker-run
-
Check application health:
curl http://localhost:8080/actuator/health
-
Access the API:
- Base URL:
http://localhost:8080 - Swagger UI:
http://localhost:8080/swagger-ui.html - Health Check:
http://localhost:8080/actuator/health
- Base URL:
# Show all available commands
make help
# Build the project
make build
# Run tests
make test
# Run style checking
make style-check
# Run security scanning
make security-scan
# Run smoke tests
make smoke-test
# Run full CI pipeline locally
make ci-local