Devver Docs

Authentication

Log in, log out, and inspect your session with devver auth.

The devver auth command manages your Devver session. Authentication tokens are stored locally and attached automatically to every request.

Commands

devver auth login

Opens a browser window to authenticate with your Devver server. Once authenticated, the access token is stored in your local config.

devver auth login

devver auth logout

Clears the local session and opens a browser to complete the server-side logout.

devver auth logout

devver auth status

Displays your current authentication state: logged-in user, active organisation, current project, and linked repository.

devver auth status

Example output:

User:         alex@devver.io
Organisation: Devver-Inc  ← (current)
              acme-corp
Project:      my-api
Repository:   Devver-Inc/my-api
Token:        eyJhbGci... (expires in 6h)

How authentication works

  1. devver auth login redirects you to the Devver web app.
  2. After approval, an access token scoped to your organisation is returned and saved locally.
  3. When you switch organisations with devver org list, the token is automatically refreshed for the new org.

If your token expires mid-session, simply run devver auth login again.

On this page