Your entire .env one key.
Stop passing around .env files. One command packs all your secrets into a single deployable key. Your app works exactly the same.
How it works
Three steps.
That's all.
01
$ npm install -g keydrop-cli@latest
Install
Install the CLI globally. One command, one-time setup.
02
$ keydrop push
Push
Your .env gets encrypted with AES-256 and stored securely. You get one key back.
03
$ keydrop run -- npm start
$ keydrop run -- next build
Run
Run any command with secrets injected. No SDK, no code changes — just prefix your script with keydrop run.
Get started