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.

Before

MONGO_URI=mongodb://...
JWT_SECRET=abc123
STRIPE_KEY=sk_test_xxx
OPENAI_KEY=sk-xxxx

After

ENLOCK_KEY=

Deploy this anywhere. Your app works normally.

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

Up and running
in minutes.

View on npm ↗GitHub ↗