Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```