Use this guide when you are deciding who can operate Floo and who can open an app you deployed on Floo.Documentation Index
Fetch the complete documentation index at: https://getfloo.com/docs/llms.txt
Use this file to discover all available pages before exploring further.
Prerequisites
- you are authenticated with
floo auth login - you know whether you are changing org membership or app access
- for
passwordandaccounts, your plan is Pro or above
1. Manage your Floo team
Organization membership controls who can operate apps and billing for your org.2. Choose an app access mode
access_mode is a config-as-code knob in floo.app.toml. The next git push (or floo deploy) applies it to your app — no dashboard click required.
public— open access (default)password— shared password (Pro+)accounts— per-user auth via gateway-managed sign-in (Pro+)sso— enterprise SSO (Enterprise)
Where the value lives
access_mode belongs under [app] in floo.app.toml. That value applies to every environment of the app.
[services.web]) silently does nothing — [app] is the only placement read on deploy.
Per-environment overrides (
[environments.<name>] access_mode = …) are accepted in the schema but not yet applied server-side on push deploys. If you need different access modes per env today, the workaround is floo deploy --access-mode <mode> per env. We’re tracking the safe per-env apply (which needs a deferred-apply column to avoid silently downgrading sibling envs) as a follow-up — see accounts-mode-trust “Known gap” for the design.3. Work with password-protected apps
If an app usespassword mode, retrieve the shared password with:
4. Manage named app users
If an app usesaccounts, the shipped dashboard exposes two app-level controls:
- a domain allowlist for self-registration
- individual user grants and revocations
5. See users across the org
The shipped org-level Users page shows people who have logged into youraccounts apps, plus:
- which apps they have used
- first seen / last active timestamps
- basic user search
What To Use Where
| Task | CLI | Dashboard |
|---|---|---|
| change org member roles | yes | yes |
| invite teammates | not first-class | yes |
| retrieve shared app password | yes | yes |
| manage app user grants | no | yes |
| manage allowlisted domains for signup | no | yes |
| inspect org app users | no | yes |
What To Do Next
Access Modes
Review the access-mode model and plan gating.
Budget Controls
Set spend caps and manage billing.