Files
the_order/scripts
defiQUG 6a8582e54d feat: comprehensive project structure improvements and Cloud for Sovereignty landing zone
- Add Cloud for Sovereignty landing zone architecture and deployment
- Implement complete legal document management system
- Reorganize documentation with improved navigation
- Add infrastructure improvements (Dockerfiles, K8s, monitoring)
- Add operational improvements (graceful shutdown, rate limiting, caching)
- Create comprehensive project structure documentation
- Add Azure deployment automation scripts
- Improve repository navigation and organization
2025-11-13 09:32:55 -08:00
..

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/)

  • Azure deployment scripts
  • CDN setup 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/)

  • Azure infrastructure scripts
  • Terraform automation
  • Environment management

Usage

Development Setup

./scripts/dev/setup-dev.sh

Azure Deployment

source infra/scripts/azure-load-env.sh
./infra/scripts/azure-deploy.sh

Security Scanning

./scripts/security/security-scan.sh

Database Backup

./scripts/backup/database-backup.sh

Script Organization

scripts/
├── README.md           # This file
├── deploy/             # Deployment scripts
├── dev/                # Development scripts
├── backup/             # Backup scripts
└── security/          # Security scripts

Last Updated: 2025-01-27