Auto-deploy your app on every git push.
floo apps github connect myorg/my-repo --app my-app
Connected my-app to myorg/my-repo (branch: main) Webhook installed. Pushes to main will trigger deploys.
floo apps github connect myorg/my-repo --app my-app --branch develop
floo apps github disconnect --app my-app
floo apps github status --app my-app
# Connect repo floo apps github connect myorg/my-repo --app my-app --json # Check status floo apps github status --app my-app --json 2>/dev/null | jq '.data' # Disconnect floo apps github disconnect --app my-app --json
git add . && git commit -m "feat: add new endpoint" && git push # floo deploys automatically — no floo deploy needed