DenseFeed / scripts /setup
j14i's picture
feat: Dockerfile + .dockerignore + setup script for BAML codegen
566ea4e
Raw
History Blame Contribute Delete
338 Bytes
#!/usr/bin/env bash
set -euo pipefail
# Generate BAML Python client from baml_src/ definitions.
# Run this after cloning or after editing any .baml files.
command -v baml-cli >/dev/null || {
echo "baml-cli not found. Install: https://docs.boundaryml.com/ref/baml-cli/init"
exit 1
}
baml-cli generate
echo "✓ baml_client/ generated"