lily_website

πŸ“‚ Deployment Documentation

⬅️ Back 🏠 Docs Root

This folder contains documentation regarding project deployment, infrastructure, and automation.

πŸ—ΊοΈ Module Map

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

πŸ“‹ Quick Start: How to Release

# 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