Skip to main content

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.

What is Envless?

Envless replaces local .env files with an end-to-end encrypted platform for syncing environment variables across your team, environments, and CI/CD pipelines. You manage variables in the dashboard; your apps and CI runners pull them down — decrypted only on your machine.

Three ways to use it

However your app loads configuration, Envless has a path:

https://mintcdn.com/envless-7b88c948/9f3dXE0TchC0LVM7/assets/icons/duotone/code.svg?fit=max&auto=format&n=9f3dXE0TchC0LVM7&q=85&s=fbd6ab5160f56cd28bd3af2bff1550eb

Import in your app

import { env } from '@goenvless/envless' — typed, decrypted at boot, no .env files.
https://mintcdn.com/envless-7b88c948/nR8RUPgNBtCF5SFI/assets/icons/duotone/arrows-clockwise.svg?fit=max&auto=format&n=nR8RUPgNBtCF5SFI&q=85&s=ff30102213f867347e249a1dad40e5d4

Sync to .env files

envless sync — encrypted pull, written to .env.<slug> for Docker, Python, Rails, shell.
https://mintcdn.com/envless-7b88c948/9f3dXE0TchC0LVM7/assets/icons/duotone/play.svg?fit=max&auto=format&n=9f3dXE0TchC0LVM7&q=85&s=1b9a1a8808e0e2bb20fdee60c707d2b1

Wrap a process

envless run -- npm start — inject into a single process, nothing on disk.

Five-minute path

1

Create an account

Sign up at app.envless.cloud. Every account comes with a default workspace.
2

Create a project and environments

From the dashboard, create a project and define environments — typically development, staging, production.
3

Install Envless

npm install -g @goenvless/envless
See Installation for per-project setup and other package managers.
4

Log in and link

envless login
envless link
envless passphrase set
5

Pull variables

Pick the mode that fits your stack — runtime import, .env sync, or envless run --. The Using Variables section walks through each.

What’s next?

https://mintcdn.com/envless-7b88c948/nR8RUPgNBtCF5SFI/assets/icons/duotone/info.svg?fit=max&auto=format&n=nR8RUPgNBtCF5SFI&q=85&s=03f8268864b5d8191dd2f73818870854

Concepts

How .envless, encryption, and environments fit together.
https://mintcdn.com/envless-7b88c948/9f3dXE0TchC0LVM7/assets/icons/duotone/shield-check.svg?fit=max&auto=format&n=9f3dXE0TchC0LVM7&q=85&s=e2fac80ab85ae810abeeeb59fb16097d

Server vs Client

Keep server secrets out of your client bundle.