Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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 (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-10-22T22:47:50.000Z (3 months ago)
- Last Synced: 2024-10-23T09:50:32.165Z (3 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.[![Crates info](https://img.shields.io/crates/v/shrine.svg)](https://crates.io/crates/shrine)
![Rust](https://img.shields.io/github/languages/top/cpollet/shrine?color=orange)
[![CI](https://github.com/cpollet/shrine/actions/workflows/test.yml/badge.svg?branch=master)](https://github.com/cpollet/shrine/actions/workflows/test.yml)
[![License: Apache 2.0](https://img.shields.io/badge/licence-Apache%202.0-blue)](LICENSE)[![asciicast](demo.gif)](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
```