# Scripts Directory **Last Updated**: 2025-01-27 **Purpose**: Utility scripts for development, deployment, and operations ## Overview This directory contains utility scripts organized by purpose. ## Script Categories ### Deployment (`deploy/`) - Sankofa Phoenix / Proxmox deployment scripts - Seal deployment scripts - Monitoring setup ### Development (`dev/`) - Development environment setup - Docker Compose configurations - Local service management ### Backup (`backup/`) - Database backup scripts - Automated backup procedures ### Security (`security/`) - Security scanning automation - Vulnerability assessment - Compliance checking ### Infrastructure (`infra/scripts/`) - Supporting infrastructure scripts - Environment management ## Usage ### Development Setup ```bash ./scripts/dev/setup-dev.sh ``` ### Sankofa Phoenix Deployment ```bash ./scripts/deploy/deploy.sh --all --environment dev --dry-run ``` ### Security Scanning ```bash ./scripts/security/security-scan.sh ``` ### Database Backup ```bash ./scripts/backup/database-backup.sh ``` ## Script Organization ``` scripts/ ├── README.md # This file ├── deploy/ # Deployment scripts ├── dev/ # Development scripts ├── backup/ # Backup scripts └── security/ # Security scripts ``` ## Related Documentation - [Deployment Guides](../docs/deployment/) - [Development Guide](../QUICKSTART.md) - [Infrastructure Scripts](../infra/scripts/) --- **Last Updated**: 2025-01-27