-
Notifications
You must be signed in to change notification settings - Fork 120
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* +git.tozt.net/rbw * clean up boilerplate --------- Co-authored-by: Jacob Heider <[email protected]>
- Loading branch information
1 parent
a6da320
commit e98fc7d
Showing
2 changed files
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# rbw | ||
|
||
This is an unofficial command line client for Bitwarden. | ||
Although it does come with its own command line client, | ||
this client is limited by being stateless - to use it, | ||
you're required to manually lock and unlock the client, | ||
and pass the temporary keys around in environment variables, | ||
which makes it very difficult to use. | ||
This client avoids this problem by maintaining a background | ||
process which is able to hold the keys in memory, similar | ||
to the way that ssh-agent or gpg-agent work. | ||
This allows the client to be used in a much simpler way, | ||
with the background agent taking care of maintaining the necessary state. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
distributable: | ||
url: https://github.com/doy/rbw/archive/refs/tags/{{version}}.tar.gz | ||
strip-components: 1 | ||
|
||
display-name: rbw | ||
|
||
versions: | ||
github: doy/rbw | ||
|
||
build: | ||
dependencies: | ||
rust-lang.org/cargo: '*' | ||
script: | ||
- cargo install --root={{ prefix}} --path=. | ||
|
||
provides: | ||
- bin/rbw | ||
|
||
test: test "$(rbw --version|cut -d' ' -f2)" = {{version}} |