Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(pages): fix pages #174

Merged
merged 1 commit into from
Sep 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<img src="https://img.shields.io/github/v/release/FalcoSuessgott/vkv" alt="drawing"/>
<img src="https://img.shields.io/docker/pulls/falcosuessgott/vkv" alt="drawing"/>

`vkv` is a little CLI tool written in Go, which enables you to list, compare, import, document, backup & encrypt secrets from a [HashiCorp Vault KV-v2 engine](https://developer.hashicorp.com/vault/docs/secrets/kv/kv-v2):
vkv is a little CLI tool written in Go, which enables you to list, compare, import, document, backup & encrypt secrets from a [HashiCorp Vault KV-v2 engine](https://developer.hashicorp.com/vault/docs/secrets/kv/kv-v2):

<img src="https://media.githubusercontent.com/media/FalcoSuessgott/vkv/master/www/static/images/demo.gif" alt="drawing" width="1000" />

Expand Down
7 changes: 2 additions & 5 deletions docs/10_advanced_examples/diff.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,5 @@

Here is an example using `diff`, the `|` indicates the changed entry per line:

### Demo
<div align="center">
<br>
<img src="https://media.githubusercontent.com/media/FalcoSuessgott/vkv/master/www/static/images/diff.gif" alt="drawing" width="1000"/>
</div>
## Demo
![gif](../assets/diff.gif)
7 changes: 2 additions & 5 deletions docs/10_advanced_examples/fzf.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,5 @@ If we pipe this into `fzf` we can get a handy little preview-app:
vkv list engines --all --include-ns-prefix | fzf --preview 'vkv export -e ${}'
```

### Demo
<div align="center">
<br>
<img src="https://media.githubusercontent.com/media/FalcoSuessgott/vkv/master/www/static/images/fzf.gif" alt="drawing" width="1000"/>
</div>
## Demo
![gif](../assets/fzf.gif)
Binary file added docs/assets/demo.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/diff.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/fzf.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 5 additions & 6 deletions docs/index.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
<div align="center">
<img src="https://raw.githubusercontent.com/FalcoSuessgott/vkv/master/www/static/images/logo.png" alt="drawing" width="200"/>
<br>
<h1> vkv </h1>
<img src="https://github.com/FalcoSuessgott/vkv/actions/workflows/test.yml/badge.svg" alt="drawing"/>
<img src="https://github.com/FalcoSuessgott/vkv/actions/workflows/lint.yml/badge.svg" alt="drawing"/>
<img src="https://codecov.io/gh/FalcoSuessgott/vkv/branch/master/graph/badge.svg" alt="drawing"/>
<img src="https://img.shields.io/github/downloads/FalcoSuessgott/vkv/total.svg" alt="drawing"/>
<img src="https://img.shields.io/github/v/release/FalcoSuessgott/vkv" alt="drawing"/>
<img src="https://img.shields.io/docker/pulls/falcosuessgott/vkv" alt="drawing"/>
</div>

`vkv` is a little CLI tool written in Go, which enables you to list, compare, import, document, backup & encrypt secrets from a [HashiCorp Vault KV-v2 engine](https://developer.hashicorp.com/vault/docs/secrets/kv/kv-v2):
![gif](../assets/demo.gif)

<img src="https://media.githubusercontent.com/media/FalcoSuessgott/vkv/master/www/static/images/demo.gif" alt="drawing" width="1000" />

</div>
`vkv` is a little CLI tool written in Go, which enables you to list, compare, import, document, backup & encrypt secrets from a [HashiCorp Vault KV-v2 engine](https://developer.hashicorp.com/vault/docs/secrets/kv/kv-v2):


### Features
* recursively print secrets of any KVv2 Engine in `json`, `yaml`, `markdown` and [other formats](https://falcosuessgott.github.io/vkv/05_export/formats/)
Expand Down
30 changes: 15 additions & 15 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,36 +15,36 @@ plugins:
enable_creation_date: false

nav:
- Home:
- index.md
- vkv:
- vkv: index.md
- Quickstart:
- 01_quickstart/index.md
- Quickstart: 01_quickstart/index.md
- Installation:
- 02_installation/index.md
- Installation: 02_installation/index.md
- Authentication:
- 03_authentication/index.md
- Authentication: 03_authentication/index.md
- Configuration:
- 04_configuration/index.md
- Configuration: 04_configuration/index.md
- Export:
- 05_export/index.md
- 05_export/formats.md
- Export: 05_export/index.md
- Export Formats: 05_export/formats.md
- Import:
- 06_import/index.md
- Import: 06_import/index.md
- Snapshots:
- Save: 07_snapshot/save.md
- Restore: 07_snapshot/restore.md
- Snapshot Save: 07_snapshot/save.md
- Snapshot Restore: 07_snapshot/restore.md
- List Namespaces:
- 08_namespaces/index.md
- List Engines:
- 09_engines/index.md
- List Namespaces: 08_namespaces/index.md
- List Engines:
- List Engines: 09_engines/index.md
- Advanced Examples:
- 10_advanced_examples/diff.md
- 10_advanced_examples/fzf.md
- 10_advanced_examples/kubernetes.md
- 10_advanced_examples/sops.md
- 10_advanced_examples/direnv.md
- Development:
- 11_development/index.md
- Development: 11_development/index.md

markdown_extensions:
- pymdownx.superfences:
Expand Down