Skip to content

Web Sign-In

Clonit Cloud has a small landing site hosted at your cloud deployment’s public URL (for example, https://clonit.ai). From there you can sign in to confirm your account and reach the connect page, which walks you through downloading the CLI and linking it to the cloud.

Web sign-in is for confirming who you are and getting set up. The day-to-day work — building, sanitizing, pushing, and pulling snapshots — happens in the Clonit CLI and its local web UI, not on the cloud landing site.

Open your cloud deployment’s public URL in a browser. The landing page describes what Clonit Cloud does and shows two buttons:

  • Sign in — start the browser sign-in flow (see below).
  • Download CLI — jump to the latest CLI release.

If your account is brand new, use the Create an account link beneath the buttons first. There’s also a Manage account link for updating your profile.

Clonit Cloud does not store your password or run its own login form. Identity is handled by a separate auth service, so signing in always happens there:

  1. You click Sign in on the cloud landing page.
  2. Your browser is redirected to the auth service, where you authenticate (including single sign-on, if your organization uses it).
  3. After you approve, the auth service redirects your browser back to the cloud.
  4. The cloud confirms your session and lands you on the connect page.

You never type an API key or password into the cloud landing site itself — the auth service owns that. From your point of view it’s a normal “sign in with your identity provider” round-trip.

Once you’re signed in, you land on the connect page. This is the page to come back to whenever you want to set up a new machine. It has three parts.

A “Signed in” badge confirms your session, along with:

  • Organization — the Clonit Cloud organization you’re signed in to.
  • Role — your role in that organization (for example, owner, admin, member, or viewer). Your role determines what you can do; see Organizations & Teams.

A Download the CLI box links to the latest Clonit release. The page detects your operating system and offers a Download for your platform button, plus a View all releases link if you need a different platform.

The CLI is the binary you actually run to snapshot, sanitize, push, and pull databases. Install it before moving on. See the Installation guide.

A Connect your agent box gives you the exact steps to link the CLI you just installed to this cloud — using the same browser-based login, with no API keys to copy or paste.

The steps it shows are:

  1. Point the CLI at this cloud. Run clonit config edit and set cloud.url to your deployment’s URL:

    cloud:
    url: https://clonit.ai
  2. Sign in from your terminal:

    Terminal window
    clonit login

    A browser window opens for you to approve the login — the same approval you did on the landing page. Clonit discovers the auth service from the cloud automatically, so cloud.url is the only value you have to set.

  3. Confirm you’re connected:

    Terminal window
    clonit whoami

Browser sign-in confirms your identity and points you at the CLI — it doesn’t move data on its own. Once your agent is connected with clonit login, you can:

Clonit Cloud has three ways to authenticate. Pick based on what you’re doing:

Method Who it’s for When to use it
Web sign-in (landing page) A person in a browser Confirm your account, download the CLI, copy the connect steps
clonit login A person at a terminal Link an interactive workstation to the cloud (OAuth device grant)
API key (cloud.api_key) Automation CI/CD and other headless agents that can’t open a browser