# WAGW SaaS - Development Scripts This directory contains helper scripts for common development tasks. ## Available Scripts | Script | Purpose | |--------|---------| | `all.sh` | All-in-one environment management | | `dev.sh` | General development commands | | `db.sh` | Database operations | | `queue.sh` | Queue worker management | | `cache.sh` | Cache management | | `gowa.sh` | GOWA service management | | `minio.sh` | MinIO object storage | | `scheduler.sh` | Scheduler management | | `cleanup.sh` | Cleanup utilities | | `docker.sh` | Docker resource management | | `env.sh` | Environment configuration | ## Usage Make scripts executable: ```bash chmod +x *.sh ``` Run commands: ```bash ./all.sh start ./db.sh migrate ./queue.sh work ./cache.sh all ``` ## Quick Start ```bash # Start everything ./all.sh start # Install dependencies ./all.sh install # Run migrations ./all.sh migrate # Start queue worker (in separate terminal) ./queue.sh work # Start scheduler (in separate terminal) ./scheduler.sh work ``` ## Environment All scripts assume you're in the project root: ``` /Applications/MAMP/htdocs/other/fpm/wagw-saas ```