What you will build
By the end of this guide you will have a single Foltrac pipeline that deploys your application to AWS, GCP, and Azure simultaneously, with a unified dashboard showing health across all three.
Prerequisites
- A Foltrac account (free tier works)
- Your application containerized with Docker
- Credentials for at least two cloud providers
Step 1: Initialize your Foltrac project
foltrac init my-appThis creates a foltrac.yml in your project root.
Step 2: Configure cloud targets
Open foltrac.yml and add your targets:
targets:
- provider: aws
region: us-east-1
- provider: gcp
region: us-central1
- provider: azure
region: eastusStep 3: Deploy
foltrac deploy --allFoltrac builds once and pushes to all targets in parallel. The dashboard at app.foltrac.com shows real-time status for every target.
What comes next
You can add health checks, rollback rules, and traffic splitting in the same config file. Check the Foltrac docs for advanced patterns.