@motive_sx/envm 1.0.0 → 1.0.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 +18 -24
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -12,13 +12,7 @@ Secure environment variable manager - store and sync .env files across machines.
|
|
|
12
12
|
## Installation
|
|
13
13
|
|
|
14
14
|
```bash
|
|
15
|
-
npm install -g envm
|
|
16
|
-
```
|
|
17
|
-
|
|
18
|
-
Or run directly with npx:
|
|
19
|
-
|
|
20
|
-
```bash
|
|
21
|
-
npx envm <command>
|
|
15
|
+
npm install -g @motive_sx/envm
|
|
22
16
|
```
|
|
23
17
|
|
|
24
18
|
## Quick Start
|
|
@@ -72,26 +66,26 @@ envm push myapp staging -f .env.staging
|
|
|
72
66
|
|
|
73
67
|
### Server Commands
|
|
74
68
|
|
|
75
|
-
| Command
|
|
76
|
-
|
|
77
|
-
| `envm server start [--port 3737]`
|
|
78
|
-
| `envm init <project>`
|
|
79
|
-
| `envm set <project> [env] KEY=value...` | Set environment variables
|
|
80
|
-
| `envm get <project> [env] [key]`
|
|
81
|
-
| `envm edit <project> [env]`
|
|
82
|
-
| `envm list`
|
|
83
|
-
| `envm envs <project>`
|
|
69
|
+
| Command | Description |
|
|
70
|
+
| --------------------------------------- | ------------------------------- |
|
|
71
|
+
| `envm server start [--port 3737]` | Start the envm server |
|
|
72
|
+
| `envm init <project>` | Create a new project |
|
|
73
|
+
| `envm set <project> [env] KEY=value...` | Set environment variables |
|
|
74
|
+
| `envm get <project> [env] [key]` | Get environment variables |
|
|
75
|
+
| `envm edit <project> [env]` | Edit env in your default editor |
|
|
76
|
+
| `envm list` | List all projects |
|
|
77
|
+
| `envm envs <project>` | List environments for a project |
|
|
84
78
|
|
|
85
79
|
### Client Commands
|
|
86
80
|
|
|
87
|
-
| Command
|
|
88
|
-
|
|
89
|
-
| `envm config set server <url>` | Configure remote server URL
|
|
90
|
-
| `envm config get [key]`
|
|
91
|
-
| `envm pull <project> [env]`
|
|
92
|
-
| `envm push <project> [env]`
|
|
93
|
-
| `envm list -r`
|
|
94
|
-
| `envm envs <project> -r`
|
|
81
|
+
| Command | Description |
|
|
82
|
+
| ------------------------------ | ---------------------------------- |
|
|
83
|
+
| `envm config set server <url>` | Configure remote server URL |
|
|
84
|
+
| `envm config get [key]` | View configuration |
|
|
85
|
+
| `envm pull <project> [env]` | Pull env from remote to local .env |
|
|
86
|
+
| `envm push <project> [env]` | Push local .env to remote |
|
|
87
|
+
| `envm list -r` | List projects from remote |
|
|
88
|
+
| `envm envs <project> -r` | List environments from remote |
|
|
95
89
|
|
|
96
90
|
### Options
|
|
97
91
|
|