You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-11Lines changed: 5 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ It's designed for terminal users who want a simple CLI-based secrets manager tha
13
13
14
14
## 💾 Installation
15
15
16
-
Currently `dotsec`must be cloned and built from source. One of the short-term goals is to publish the project so that it can be installed on platforms like `brew`, `apt`, and others.
16
+
Currently `dotsec`can be built from source or installed via `crates.io`. One of the short-term goals is to publish the project so that it can be installed on platforms like `brew`, `apt`, and others.
17
17
18
18
### Prerequisites
19
19
You'll need [Rust](https://www.rust-lang.org/tools/install) installed.
@@ -23,19 +23,13 @@ You'll need [Rust](https://www.rust-lang.org/tools/install) installed.
23
23
git clone https://github.com/junhsonjb/dotsec.git
24
24
cd dotsec
25
25
cargo build --release
26
-
cargo run -- -V
26
+
cargo run -- -V # optional: verify that installation was successful
27
+
cargo install --path .# optional: install binary under command `ds`
27
28
```
28
29
29
-
### (Optional) Local Cargo Install
30
-
Since `dotsec` currently has to be built from source, users will need to run the program in the following manner:
30
+
### Install from crates.io
31
31
```bash
32
-
cargo run -- <command><args>
33
-
```
34
-
35
-
This is a lot to type. The project is planned to be published in the short-term, but in the meantime we can use cargo to setup the binary:
0 commit comments