What problem does it solve?
Deployment of Epic Stack applications often requires manual orchestration of Fly.io deployments, region distribution, and CI/CD pipelines. This Skill provides a structured guide to deploy, scale, and monitor Epic Stack apps across multiple regions with automated migrations and healthchecks.
Core Features & Use Cases
- Fly.io configuration and multi-region deployment using fly.toml and LiteFS.
- CI/CD integration with GitHub Actions for automated deployments to production, staging, and preview environments.
- Secrets management, healthchecks, backups, and dependency management for zero-downtime deployments.
Quick Start
Install the Fly.io CLI and login, create and configure the app, set environment secrets, wire up CI/CD, and perform an initial deployment. For example:
- Install and login: fly auth login
- Create app and configure regions: fly apps create my-app; edit fly.toml to set primary_region
- Configure LiteFS and migrations: ensure other/litefs.yml is present and Prisma migrations run on primary
- Deploy: fly deploy --app my-app
- Set up Actions workflow: create .github/workflows/deploy.yml to automate deployment