Quickstart
Go from a loose .env file to injected, encrypted secrets in about five minutes.
1
Install the CLI
npm install -g usecloak-cli2
Log in
cloak login3
Create a project and select a target
cloak projects create api
cloak use --workspace acme --project api --env development4
Import your existing .env
cloak secrets import --from .env5
Run your app with secrets injected
cloak run -- npm run devNo 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