What Floo Handles Well
Floo is built for Dockerfile-based deploys. The CLI can still detect common runtimes and frameworks duringfloo init, but the deployable artifact is the Docker image you define.
| App shape | Typical service type | Notes |
|---|---|---|
| Next.js | web | browser-facing app on port 3000 |
| Vite / React | web | static frontend served from a Docker image |
| Express | api or web | Node.js HTTP service |
| FastAPI | api | Python HTTP API on port 8000 |
| Flask / Django | api or web | Python web apps with a Dockerfile |
| Go service | api or worker | binary built from go.mod project |
| Static site | web | simple asset-serving image |
| Generic Docker app | web, api, or worker | anything you can package into a Dockerfile |
Deployable Service Types
webfor browser-facing HTTP trafficapifor backend HTTP servicesworkerfor background processes with no public ingress
First Tutorial Set
Deploy Next.js on Floo
Dockerfile, config, and first deploy for a Next.js app.
Deploy FastAPI on Floo
Dockerfile, config, and first deploy for a Python API.
Deploy Vite on Floo
Dockerfile, config, and first deploy for a frontend app.