envhub-cli 0.1.1 → 0.1.2

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.
Files changed (2) hide show
  1. package/README.md +14 -14
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # envhub Documentation
1
+ # 🛡️ ENVHUB-CLI
2
2
 
3
3
  **envhub** is a CLI tool that makes sharing `.env` files between developers easy and secure. Instead of sending secrets over chat messages, envhub stores them in a cloud secrets manager and lets your team push and pull environment configurations safely.
4
4
 
@@ -13,27 +13,27 @@
13
13
 
14
14
  ### Getting Started
15
15
 
16
- 1. [Installation](docs/getting-started/installation.md)
17
- 2. [Setup (envhub init)](docs/getting-started/setup.md)
18
- 3. [Your First Secret](docs/getting-started/first-secret.md)
19
- 4. [Version Control](docs/getting-started/version-control.md)
16
+ 1. [Installation](https://github.com/caanyp24/envhub-cli/blob/main/docs/getting-started/installation.md)
17
+ 2. [Setup (envhub init)](https://github.com/caanyp24/envhub-cli/blob/main/docs/getting-started/setup.md)
18
+ 3. [Your First Secret](https://github.com/caanyp24/envhub-cli/blob/main/docs/getting-started/first-secret.md)
19
+ 4. [Version Control](https://github.com/caanyp24/envhub-cli/blob/main/docs/getting-started/version-control.md)
20
20
 
21
21
  ### Commands
22
22
 
23
23
  | Command | Description |
24
24
  | --- | --- |
25
- | [push](docs/commands/push.md) | Push a local .env file to the cloud |
26
- | [pull](docs/commands/pull.md) | Pull the latest .env file from the cloud |
27
- | [cat](docs/commands/cat.md) | Display the contents of a secret |
28
- | [list](docs/commands/list.md) | List all managed secrets |
29
- | [delete](docs/commands/delete.md) | Delete a secret |
30
- | [grant](docs/commands/grant.md) | Grant a user access to a secret |
31
- | [revoke](docs/commands/revoke.md) | Revoke a user's access to a secret |
25
+ | [push](https://github.com/caanyp24/envhub-cli/blob/main/docs/commands/push.md) | Push a local .env file to the cloud |
26
+ | [pull](https://github.com/caanyp24/envhub-cli/blob/main/docs/commands/pull.md) | Pull the latest .env file from the cloud |
27
+ | [cat](https://github.com/caanyp24/envhub-cli/blob/main/docs/commands/cat.md) | Display the contents of a secret |
28
+ | [list](https://github.com/caanyp24/envhub-cli/blob/main/docs/commands/list.md) | List all managed secrets |
29
+ | [delete](https://github.com/caanyp24/envhub-cli/blob/main/docs/commands/delete.md) | Delete a secret |
30
+ | [grant](https://github.com/caanyp24/envhub-cli/blob/main/docs/commands/grant.md) | Grant a user access to a secret |
31
+ | [revoke](https://github.com/caanyp24/envhub-cli/blob/main/docs/commands/revoke.md) | Revoke a user's access to a secret |
32
32
 
33
33
  ### Architecture
34
34
 
35
- - [Configuration (.envhubrc.json)](docs/architecture/configuration.md)
36
- - [Provider Architecture](docs/architecture/providers.md)
35
+ - [Configuration (.envhubrc.json)](https://github.com/caanyp24/envhub-cli/blob/main/docs/architecture/configuration.md)
36
+ - [Provider Architecture](https://github.com/caanyp24/envhub-cli/blob/main/docs/architecture/providers.md)
37
37
 
38
38
  ## Quick Example
39
39
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "envhub-cli",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Securely share .env files between developers using cloud providers",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",