Files

81 lines
1.5 KiB
Markdown
Raw Permalink Normal View History

# 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