fleet-memory/scripts/generate-openapi.sh
2025-11-27 16:22:16 +01:00

13 lines
278 B
Bash
Executable file

#!/bin/bash
set -e
# Script to generate OpenAPI specification
# This runs the generate-openapi command from hindsight-dev
cd "$(dirname "$0")/.."
echo "Generating OpenAPI specification..."
cd hindsight-dev
uv run generate-openapi
echo "OpenAPI spec generated successfully!"