@dbx-tools/cli 0.6.133 → 0.6.135
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 +5 -4
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -90,13 +90,14 @@ resolution, and output formats.
|
|
|
90
90
|
## Broker Local Provider Tokens
|
|
91
91
|
|
|
92
92
|
```sh
|
|
93
|
-
dbx token serve --
|
|
94
|
-
dbx token client-
|
|
95
|
-
dbx token access-token --
|
|
93
|
+
dbx token serve --secret "$TOKEN_BROKER_SECRET"
|
|
94
|
+
CLIENT_AUTH="$(dbx token client-jwt container-client --secret "$TOKEN_BROKER_SECRET")"
|
|
95
|
+
dbx token access-token --auth "$CLIENT_AUTH"
|
|
96
96
|
```
|
|
97
97
|
|
|
98
98
|
The broker keeps Google ADC under gcloud, caches access tokens only in memory,
|
|
99
|
-
and defaults to
|
|
99
|
+
and defaults to signed JWT client authentication. See
|
|
100
|
+
[`@dbx-tools/cli-token`](../token) for service
|
|
100
101
|
installation, client authorization, Docker, Podman, and configuration.
|
|
101
102
|
|
|
102
103
|
## Put A Gated Public URL In Front Of A Command
|
package/package.json
CHANGED
|
@@ -28,12 +28,12 @@
|
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
30
|
"@clack/prompts": "^1.7.0",
|
|
31
|
-
"@dbx-tools/cli-appkit-env": "0.6.
|
|
32
|
-
"@dbx-tools/cli-model-proxy": "0.6.
|
|
33
|
-
"@dbx-tools/cli-token": "0.6.
|
|
34
|
-
"@dbx-tools/cli-tunnel": "0.6.
|
|
35
|
-
"@dbx-tools/core": "0.6.
|
|
36
|
-
"@dbx-tools/shared-core": "0.6.
|
|
31
|
+
"@dbx-tools/cli-appkit-env": "0.6.135",
|
|
32
|
+
"@dbx-tools/cli-model-proxy": "0.6.135",
|
|
33
|
+
"@dbx-tools/cli-token": "0.6.135",
|
|
34
|
+
"@dbx-tools/cli-tunnel": "0.6.135",
|
|
35
|
+
"@dbx-tools/core": "0.6.135",
|
|
36
|
+
"@dbx-tools/shared-core": "0.6.135",
|
|
37
37
|
"commander": "^15.0.0"
|
|
38
38
|
},
|
|
39
39
|
"main": "./lib/index.js",
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
"./package.json": "./package.json"
|
|
71
71
|
}
|
|
72
72
|
},
|
|
73
|
-
"version": "0.6.
|
|
73
|
+
"version": "0.6.135",
|
|
74
74
|
"types": "./lib/index.d.ts",
|
|
75
75
|
"type": "module",
|
|
76
76
|
"exports": {
|