- 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
81 lines
1.5 KiB
Markdown
81 lines
1.5 KiB
Markdown
# 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
|
|
```bash
|
|
./scripts/dev/setup-dev.sh
|
|
```
|
|
|
|
### Azure Deployment
|
|
```bash
|
|
source infra/scripts/azure-load-env.sh
|
|
./infra/scripts/azure-deploy.sh
|
|
```
|
|
|
|
### 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
|
|
|