https://github.com/cpollet/shrine
Secrets manager written in rust
https://github.com/cpollet/shrine
Last synced: 3 months ago
JSON representation
Secrets manager written in rust
- Host: GitHub
- URL: https://github.com/cpollet/shrine
- Owner: cpollet
- License: apache-2.0
- Created: 2023-05-30T18:12:44.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2024-10-22T22:47:50.000Z (8 months ago)
- Last Synced: 2024-10-23T09:50:32.165Z (8 months ago)
- Language: Rust
- Homepage:
- Size: 431 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 23
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# shrine
Secrets manager written in rust.[](https://crates.io/crates/shrine)

[](https://github.com/cpollet/shrine/actions/workflows/test.yml)
[](LICENSE)[](https://asciinema.org/a/589589?autoplay=1)
# Command-line usage
### Initialize your shrine
```sh
shrine init
```### Add secrets
```shell
shrine set personal/github mypassword
shrine set personal/email/[email protected] mySecurePassword
shrine set personal/email/[email protected] mySecurePassword
```### Get a secret value
```shell
shrine get personal/github
```### List secrets
```shell
shrine ls
shrine ls personal/email/.*
```### Delete secrets
```shell
shrine rm personal/email/[email protected]
```## Configure git integration
```shell
shrine config set git.enabled false
shrine config set git.commit.auto false
```