claim-machinery API läuft (Standard: http://localhost:8080)
CLONE + RUN
# Repository klonen
git clone https://github.com/stuttgart-things/claims.git
cd claims
# Abhängigkeiten installieren
go mod tidy
# Bauen und starten
go build -o claims .
./claims render
Commands
Command
Description
claims render
Interactively render a claim template via API
claims version
Print version information
render
claims render [flags]
Flag
Short
Description
--api-url
-a
API URL (default: $CLAIM_API_URL or http://localhost:8080)
Examples:
# Use default API URL
claims render
# Custom API URL
claims render --api-url http://api.example.com:8080
# Via environment variable
CLAIM_API_URL=http://api.example.com:8080 claims render