@webbies.dev/dotenvify 0.3.13 → 0.3.14
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 +37 -9
- package/bin/dotenvify +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -104,17 +104,9 @@ dotenvify -azure -group "your-variable-group"
|
|
|
104
104
|
|
|
105
105
|
**Option B: Specify organization directly**
|
|
106
106
|
```bash
|
|
107
|
-
dotenvify -azure -
|
|
107
|
+
dotenvify -azure -org "https://dev.azure.com/your-org/your-project" -group "your-variable-group"
|
|
108
108
|
```
|
|
109
109
|
|
|
110
|
-
**Options:**
|
|
111
|
-
- `-out file.env` - Custom output file
|
|
112
|
-
- `-preserve "VAR1,VAR2"` or `-k` - Keep existing values for specified variables
|
|
113
|
-
- `-nl` - Ignore lowercase variables
|
|
114
|
-
- `-export` - Add 'export' prefix
|
|
115
|
-
- `-urls` - Only URL values
|
|
116
|
-
- `-f` - Overwrite output file (default: backup existing file)
|
|
117
|
-
|
|
118
110
|
<details>
|
|
119
111
|
<summary>🔒 Security & Authentication Details</summary>
|
|
120
112
|
|
|
@@ -126,6 +118,42 @@ DotEnvify uses your existing Azure CLI authentication:
|
|
|
126
118
|
Just make sure you're logged in with `az login` before running the tool.
|
|
127
119
|
</details>
|
|
128
120
|
|
|
121
|
+
## 📋 Command Line Options
|
|
122
|
+
|
|
123
|
+
### General Options
|
|
124
|
+
| Option | Shorthand | Description |
|
|
125
|
+
|--------|-----------|-------------|
|
|
126
|
+
| `-version` | `-v` | Show version information |
|
|
127
|
+
| `-update` | `-up` | Update dotenvify to the latest version |
|
|
128
|
+
| `-check-update` | `-cu` | Check if a new version is available |
|
|
129
|
+
| `-help` | `-h` | Show help message |
|
|
130
|
+
|
|
131
|
+
### Azure DevOps Options
|
|
132
|
+
| Option | Shorthand | Description |
|
|
133
|
+
|--------|-----------|-------------|
|
|
134
|
+
| `-azure` | `-az` | Enable Azure DevOps mode |
|
|
135
|
+
| `-org <url>` | `-o <url>` | Azure DevOps organization URL (e.g., `https://dev.azure.com/org/project`)<br>Alternative: Set `DOTENVIFY_DEFAULT_ORG_URL` environment variable |
|
|
136
|
+
| `-group <name>` | `-g <name>` | Variable group name(s) - comma-separated for multiple groups |
|
|
137
|
+
|
|
138
|
+
### Output Options
|
|
139
|
+
| Option | Shorthand | Description |
|
|
140
|
+
|--------|-----------|-------------|
|
|
141
|
+
| `-output <file>` | `-out <file>` | Output file path (default: `.env`) |
|
|
142
|
+
| `-export` | `-e` | Add `export` prefix to all variables |
|
|
143
|
+
| `-overwrite` | `-f` | Overwrite output file without creating backup |
|
|
144
|
+
|
|
145
|
+
### Filtering Options
|
|
146
|
+
| Option | Shorthand | Description |
|
|
147
|
+
|--------|-----------|-------------|
|
|
148
|
+
| `-no-lower` | `-nl` | Ignore variables with lowercase keys |
|
|
149
|
+
| `-url-only` | `-urls` | Include only variables with HTTP/HTTPS URL values |
|
|
150
|
+
| `-preserve <vars>` | `-k <vars>` | Comma-separated list of variables to preserve (keep existing values) |
|
|
151
|
+
|
|
152
|
+
### Sorting Options
|
|
153
|
+
| Option | Shorthand | Description |
|
|
154
|
+
|--------|-----------|-------------|
|
|
155
|
+
| `-no-sort` | `-ns` | Do not sort variables alphabetically (maintain original order) |
|
|
156
|
+
|
|
129
157
|
## ✨ Features
|
|
130
158
|
|
|
131
159
|
- ⚡ **Fast**: Written in Go
|
package/bin/dotenvify
CHANGED
|
Binary file
|