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 logindevver auth logout
Clears the local session and opens a browser to complete the server-side logout.
devver auth logoutdevver auth status
Displays your current authentication state: logged-in user, active organisation, current project, and linked repository.
devver auth statusExample 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
devver auth loginredirects you to the Devver web app.- After approval, an access token scoped to your organisation is returned and saved locally.
- 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.