logo

Quickstart

Go from a loose .env file to injected, encrypted secrets in about five minutes.

1

Install the CLI

npm install -g usecloak-cli
2

Log in

cloak login
3

Create a project and select a target

cloak projects create api
cloak use --workspace acme --project api --env development
4

Import your existing .env

cloak secrets import --from .env
5

Run your app with secrets injected

cloak run -- npm run dev

No local file is created

`cloak run` injects secrets directly into the child process's environment. Nothing is written to disk, so there's nothing to accidentally commit.

Manage resources and access visually.

Dashboard