Logo

Dashboard Guide

Getting Started with the Dashboard

The web dashboard is where you sign up, manage your organization, projects, and team, and where you control sensitive operations the CLI doesn't expose (deletes, role changes, billing, audit log review).

Signing Up

Visit the registration page and choose an account type:

Individual

Solo developer or learner. Auto-provisions a personal organization.

Organization

Team or company. Asks for an organization name during signup.

Password requirements:

  • At least 8 characters
  • One uppercase letter
  • One lowercase letter
  • One number

Logging In

  1. Enter your email and password.
  2. If 2FA is enabled, enter your TOTP code from your authenticator app.
  3. You'll land on the dashboard overview.

Enable 2FA

Open Profile → Security, click Enable 2FA, scan the QR code with any TOTP app (1Password, Authy, Google Authenticator), and verify the rotating code.

Once enabled, every login (including password resets) requires the 6-digit code. See /dashboard/profile for the full flow.

Dashboard Layout

SectionWhat lives there
OverviewActivity timeline, key metrics, recent secret reads.
ProjectsCRUD for projects and per-environment variables.
SecretsOrg-wide secrets with versioning and reveal-on-demand.
TeamInvite, remove, and assign roles to members.
API KeysCreate, scope, and revoke API keys for the CLI / SDKs / CI.
Audit LogsFilter and inspect every read/write/admin action.
BillingPlan, invoices, payment method.
ProfilePersonal info, password, 2FA, organization switcher.

First Project & First Secret

  1. Open /projectsNew Project.
  2. Give it a name and (optionally) a description. Click create.
  3. The project opens with three default environments: development, staging, production.
  4. Pick an environment, click Add Variable, set DATABASE_URL=postgres://localhost/dev.
  5. From your terminal, run envv login --token …, then envv use to pick the project, then envv run -- npm start to inject the variable into your app.

Switching Organizations

If you belong to multiple organizations, use the org switcher in the top-right (next to your avatar). The dashboard and CLI both follow whichever org you have active.