Skip to main content
Create, list, and clone managed apps without a GitHub account. These are subcommands of floo projects. The agent recipe covers the managed app workflow.

create

Create and deploy a managed app with hosted, invite-only login and postgres. Usage: floo projects create <NAME>. Names must be 2 to 40 characters, contain only lowercase letters, digits, and hyphens, and start with a letter. The command starts the first deploy from a Next.js template and returns:
  • The app URL: https://<name>-dev.on.getfloo.com.
  • A private repository floo hosts in its own GitHub organization.
  • Hosted, invite-only login with access_mode = "accounts".
  • Managed Postgres injected as DATABASE_URL.

Flags

Example


list

List managed projects in the current organization.

Flags

Example


clone

Clone a managed project and configure credentials only in that repository. Usage: floo projects clone <NAME_OR_ID> [DIR]. Pass the project name or ID and an optional destination directory. The command runs git clone and sets a repository-local git credential helper: credential.helper points at the floo binary, and credential.useHttpPath=true. Tokens are minted per git operation, scoped to that one repository, expire in an hour, and are never stored. Do not run gh or edit the remote.

Flags

Example