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
- Enter your email and password.
- If 2FA is enabled, enter your TOTP code from your authenticator app.
- 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
| Section | What lives there |
|---|---|
| Overview | Activity timeline, key metrics, recent secret reads. |
| Projects | CRUD for projects and per-environment variables. |
| Secrets | Org-wide secrets with versioning and reveal-on-demand. |
| Team | Invite, remove, and assign roles to members. |
| API Keys | Create, scope, and revoke API keys for the CLI / SDKs / CI. |
| Audit Logs | Filter and inspect every read/write/admin action. |
| Billing | Plan, invoices, payment method. |
| Profile | Personal info, password, 2FA, organization switcher. |
First Project & First Secret
- Open /projects → New Project.
- Give it a name and (optionally) a description. Click create.
- The project opens with three default environments: development, staging, production.
- Pick an environment, click Add Variable, set
DATABASE_URL=postgres://localhost/dev. - From your terminal, run
envv login --token …, thenenvv useto pick the project, thenenvv run -- npm startto 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.