Artifacts — Aquilia Documentation
Comprehensive guide and documentation for Artifacts in the Aquilia framework. View API reference, examples, and implementation patterns.
CLI / Artifacts Artifact Commands The aq artifact command group coordinates build registries, verifies signatures, and manages compiled releases. aq artifact list Lists built artifacts inside the store folder, with options to filter by tags or kind type. # List all artifacts in default directory aq artifact list # Filter to show only compiled route model artifacts aq artifact list --kind=routes --tag=env=prod Options Option Description ))} aq artifact inspect Dumps raw metadata, digital signatures, and target files compiled within the designated `.surp` archive. aq artifact inspect package-id-abc aq artifact verify Computes hashes and checks cryptographic signatures on compiled artifacts to ensure they match deployment records. # Verify single artifact integrity aq artifact verify package-id-abc # Batch verify all files in registry aq artifact verify-all aq artifact gc Garbage collects unreferenced files or stale release bundles to free up storage space. aq artifact gc --days-older-than=30 )
Go to Homepage