Documentation Index
Fetch the complete documentation index at: https://docs.envless.cloud/llms.txt
Use this file to discover all available pages before exploring further.
Personal access keys (ev_live_…) authenticate Envless from environments that can’t run an interactive browser login — CI runners, Docker builds, production hosts, serverless platforms, and any tool calling the Envless API directly.
Each key is scoped to a workspace and can be named, rotated, or revoked from the dashboard at any time.
When you need one
CI / CD pipelines
ENVLESS_TOKEN and envless sync, envless run, and the runtime import all work.Production hosts
Docker builds
API access
Create a key
Open the Keys page
Generate
ci-production, vercel-preview, github-actions), and click “Generate Key”.Use the key
Expose the key as ENVLESS_TOKEN in the target environment. Every Envless command and the runtime loader pick it up automatically.
See CI/CD & Production for platform-specific setups (GitHub Actions, Vercel, Docker, Kubernetes).
Naming and rotation
Name keys for the place they live, not the person who created them:
| Good | Why |
|---|---|
ci-production | One key per pipeline, easy to revoke without breaking other things |
vercel-preview | Scoped to a platform and environment |
docker-build | Targeted revocation when the image registry changes |
bardhyl-laptop | Bad — use envless login on laptops instead |
Rotate keys whenever:
- An employee with access leaves.
- A CI provider you used was breached.
- You’re not sure if a key leaked — rotate first, investigate second.
Revoking
From the dashboard, delete the key. The next call using it gets a 401 immediately. There’s no grace period — design pipelines around that (generate the new key, update the secret, then revoke the old).
Programmatic API access
Beyond authenticating the CLI and runtime, personal access keys let you call the Envless HTTP API directly. Pass the key as a bearer token:
The API is read-only today — list workspaces, projects, environments, and (ciphertext) variables. See API Overview for the full surface, Authentication for the auth flow, and the Endpoints reference for every operation.