Your entire .env one key.
Push your .env once, deploy with a single KEYDROP_KEY. Use keydrop run for builds and init() for runtime one key, deploy anywhere.
How it works
Three steps.
That's all.
01
$ npm install keydrop
$ npm install -g keydrop-cli
Install
Install both the KeyDrop CLI and SDK. The CLI handles secret management and build-time injection. The SDK handles runtime secret loading.
02
$ keydrop login
$ keydrop push
Push
Upload your existing .env file. Your secrets are securely stored and replaced with a single project key.
03
$ keydrop run -- npm run dev
$ keydrop run -- next build
Run
Use keydrop run for development and builds. Call init() at runtime to load secrets into process.env.
Get started