@captainsafia/burrow 1.0.0 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -0
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
Burrow is a platform-agnostic, directory-scoped secrets manager. Secrets are stored outside your repos in a local SQLite store and exportable to various formats via the CLI. For a nicer dev experience, Burrow currently stores secrets in a plain-text format outside the target repo, which means that secrets can still be leaked to other users on your machine or people who gain access to your device. But, for your day-to-day dev use, this beats keeping secrets in gitignored files in your repo.
|
|
4
4
|
|
|
5
|
+
<p align="center">
|
|
6
|
+
<img src="demo.gif" alt="burrow demo" width="600">
|
|
7
|
+
</p>
|
|
8
|
+
|
|
5
9
|
```
|
|
6
10
|
~/projects/ # DATABASE_URL, API_KEY defined here
|
|
7
11
|
├── app-a/ # inherits both secrets
|
|
@@ -32,6 +36,8 @@ burrow set DATABASE_URL=postgres://localhost/mydb --path ~/projects
|
|
|
32
36
|
```bash
|
|
33
37
|
burrow get API_KEY
|
|
34
38
|
burrow get API_KEY --format json
|
|
39
|
+
# Redact the secret value in output
|
|
40
|
+
burrow get API_KEY --redact
|
|
35
41
|
```
|
|
36
42
|
|
|
37
43
|
### List all secrets
|
|
@@ -39,6 +45,8 @@ burrow get API_KEY --format json
|
|
|
39
45
|
```bash
|
|
40
46
|
burrow list
|
|
41
47
|
burrow list --format json
|
|
48
|
+
# Redact secret values in output
|
|
49
|
+
burrow list --redact
|
|
42
50
|
```
|
|
43
51
|
|
|
44
52
|
### Export to your shell
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@captainsafia/burrow",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"description": "Platform-agnostic, directory-scoped secrets manager",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/api.js",
|
|
@@ -51,6 +51,7 @@
|
|
|
51
51
|
],
|
|
52
52
|
"license": "MIT",
|
|
53
53
|
"dependencies": {
|
|
54
|
+
"clipboardy": "^5.0.2",
|
|
54
55
|
"commander": "^14.0.2"
|
|
55
56
|
}
|
|
56
57
|
}
|