@secretstash/cli 0.1.0 → 0.1.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 +2 -2
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -258,7 +258,7 @@ Docker will automatically pull the correct architecture for your platform.
|
|
|
258
258
|
| Variable | Description | Default |
|
|
259
259
|
|----------|-------------|---------|
|
|
260
260
|
| `SECRETSTASH_TOKEN` | Service token for authentication | - |
|
|
261
|
-
| `SECRETSTASH_API_URL` | API endpoint URL | `https://api.secretstash.
|
|
261
|
+
| `SECRETSTASH_API_URL` | API endpoint URL | `https://api.secretstash.dev` |
|
|
262
262
|
| `SECRETSTASH_CONFIG_DIR` | Configuration directory | `~/.config/secretstash` |
|
|
263
263
|
|
|
264
264
|
## Configuration
|
|
@@ -269,7 +269,7 @@ The CLI stores configuration in `~/.config/secretstash/config.json`:
|
|
|
269
269
|
|
|
270
270
|
```json
|
|
271
271
|
{
|
|
272
|
-
"apiUrl": "https://api.secretstash.
|
|
272
|
+
"apiUrl": "https://api.secretstash.dev",
|
|
273
273
|
"currentProject": "my-project",
|
|
274
274
|
"currentTeam": "my-team"
|
|
275
275
|
}
|
package/dist/index.js
CHANGED