Setup
- Install floo and authenticate:
- Add floo rules to
.cursorrulesin your project root. Copy the full rules from the AI Setup page.
Workflow
Ask Cursor to build and deploy:floo init, connects GitHub, and runs floo deploy. Your app is live.
Post-deploy management
What Cursor can do
| Task | Command |
|---|---|
| Initialize | floo init my-app |
| Connect GitHub | floo apps github connect owner/repo --app my-app |
| Deploy | floo deploy |
| Check status | floo apps status my-app |
| Set env vars | floo env set KEY=value --app my-app |
| View logs | floo logs --app my-app --tail 50 |
| Add domain | floo domains add myapp.com --app my-app |
| Rollback | floo deploy rollback my-app <deploy-id> --force |
Tips
- Cursor runs commands in the integrated terminal, so it sees both the colored stderr output and can parse stdout.
- Add
--jsonwhen you want Cursor to parse the output for automated follow-up actions. - Use
--forceon destructive commands to skip confirmation prompts.