Keep passwords, tokens, and keys in encrypted vaults
One encrypted file for every password, token, and key your project needs.
Commit it next to the code.
Vaults can only be opened with their key.
You and your team own everything.
Safely store a secret in just a few commands
$ valt0 init prod
Created the empty vault file.
key VLT0-KEY-D8B38D16-19B5681D-… save it now
$ valt0 store prod:STRIPE_KEY
Key for prod.valt0: ••••••••••••
Value for STRIPE_KEY: ••••••••••••••••
The secret is now stored safely in the vault.
$ git add prod.valt0 && git commit
1 file changed. Locked, as always.
- 01
Make the vault
Creates prod.valt0 and prints its key.
- 02
Put a secret in
Your secrets are securely encrypted at rest. Nothing is leaked.
- 03
Keep it anywhere
An ordinary encrypted file. Commit it next to the code, or carry it on a stick.