| β¬ οΈ Back | π Docs Root |
This folder contains documentation regarding project deployment, infrastructure, and automation.
| Component | Description |
|---|---|
| π·οΈ Releases via Tags | Primary Guide: Tag-based production release workflow |
| π Docker Compose (Development) | Docker Compose configuration for local development environments. |
| π Docker Compose (Production) | Docker Compose configuration for production deployment. |
| π Nginx | Web server and reverse proxy configuration |
| π CI/CD | GitHub Actions pipelines |
# 1. Merge develop β main via PR on GitHub
# 2. Create tag:
git checkout main
git pull origin main
git tag -a v1.2.3 -m "Release 1.2.3: Production fixes"
git push origin v1.2.3
# 3. GitHub Actions automatically deploys!
Full guide: Releases via Tags