Install and authenticate flyctl

# Install flyctl
curl -L https://fly.io/install.sh | sh

# Authenticate
fly auth login

Deploy to Fly.io

Fly Commands

Commands and configuration for Fly.io via the CLI
1

Add Fly.io instance

helix add fly \
  --name production \
  --vm-size performance-4x \
  --volume-size 20 \
  --public false
2

Build and deploy

helix build production
helix push production
3

Check deployment

fly status -a my-app-production
fly logs -a my-app-production