floo init creates files in your repo, those files become the source of truth for app shape, and the dashboard reflects their live effect instead of mutating them.
For the control-plane model itself, start with Config as Code.
What floo init creates
For a single-service project, floo init detects your runtime and writes a single floo.app.toml with the service declared inline. A Dockerfile is scaffolded too when one isn’t already present.
You can edit floo.app.toml by hand before deploying.
Single service
Most apps need onefloo.app.toml with an inline service:
Adding managed services
If you need Postgres, Redis, or Storage, usefloo.app.toml:
Multi-service apps
Define all services in onefloo.app.toml:
Local development
Adddev_command and migrate_command to run services locally with floo dev:
migrate_command runs before the service starts. dev_command is the long-running process. Both run in the service’s path directory with managed service credentials injected.
Validate before deploying
Config as Code
See what belongs in config and what intentionally stays outside it.
Config File Spec
Full reference for all fields, shapes, and precedence rules.