Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 813 Bytes

File metadata and controls

26 lines (19 loc) · 813 Bytes

Utilities

This directory contains utility documentation for maintaining and working with the Pangolin project.

Available Guides

Complete guide for regenerating the OpenAPI specification files (JSON and YAML) after making changes to API handlers or models.

Quick Commands:

# Generate JSON
cd pangolin && cargo run -p pangolin_api --bin export_openapi json 2>/dev/null > ../docs/api/openapi.json

# Generate YAML
cd pangolin && cargo run -p pangolin_api --bin export_openapi yaml 2>/dev/null > ../docs/api/openapi.yaml

Future Utilities

Additional utility guides will be added here as needed:

  • Database migrations
  • Test data generation
  • Performance benchmarking
  • Deployment scripts
  • Backup and restore procedures