@akshxy/envgit 0.6.0 → 0.6.1
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 +4 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -15,7 +15,7 @@ npm install -g @akshxy/envgit
|
|
|
15
15
|
- Secrets are encrypted with **AES-256-GCM** and live in `.envgit/` — safe to commit
|
|
16
16
|
- The key lives on **your machine only** (`~/.config/envgit/keys/`) — never touches the repo
|
|
17
17
|
- Onboard a teammate in one command: `envgit share` → send them the link → they run `envgit join`
|
|
18
|
-
- `envgit unpack
|
|
18
|
+
- `envgit unpack` writes a clean, **beautifully formatted `.env`** grouped by service
|
|
19
19
|
|
|
20
20
|
---
|
|
21
21
|
|
|
@@ -35,8 +35,9 @@ envgit set -f .env.local
|
|
|
35
35
|
git add .envgit/
|
|
36
36
|
git commit -m "chore: add encrypted env"
|
|
37
37
|
|
|
38
|
-
# 5.
|
|
39
|
-
envgit
|
|
38
|
+
# 5. Switch env and write .env locally
|
|
39
|
+
envgit use dev
|
|
40
|
+
envgit unpack
|
|
40
41
|
```
|
|
41
42
|
|
|
42
43
|
---
|