hereya-cli 0.85.5 → 0.86.0
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 +130 -80
- package/dist/backend/cloud/cloud-backend.d.ts +1 -0
- package/dist/backend/cloud/cloud-backend.js +6 -1
- package/dist/backend/index.js +24 -0
- package/dist/commands/app/deploy/index.d.ts +2 -0
- package/dist/commands/app/deploy/index.js +17 -0
- package/dist/commands/app/deployments/index.d.ts +4 -0
- package/dist/commands/app/deployments/index.js +20 -1
- package/dist/commands/app/destroy/index.d.ts +2 -0
- package/dist/commands/app/destroy/index.js +19 -0
- package/dist/commands/app/env/index.d.ts +2 -0
- package/dist/commands/app/env/index.js +17 -0
- package/dist/commands/app/list/index.d.ts +4 -0
- package/dist/commands/app/list/index.js +20 -1
- package/dist/commands/app/status/index.d.ts +2 -0
- package/dist/commands/app/status/index.js +17 -0
- package/dist/commands/deploy/index.d.ts +2 -0
- package/dist/commands/deploy/index.js +90 -55
- package/dist/commands/init/index.d.ts +2 -0
- package/dist/commands/init/index.js +18 -1
- package/dist/commands/login/index.js +5 -0
- package/dist/commands/publish/index.d.ts +2 -0
- package/dist/commands/publish/index.js +17 -0
- package/dist/commands/run/index.d.ts +2 -0
- package/dist/commands/run/index.js +17 -0
- package/dist/commands/search/index.d.ts +2 -0
- package/dist/commands/search/index.js +38 -21
- package/dist/commands/undeploy/index.d.ts +2 -0
- package/dist/commands/undeploy/index.js +50 -15
- package/dist/commands/up/index.d.ts +2 -0
- package/dist/commands/up/index.js +17 -1
- package/dist/commands/workspace/executor/install/index.d.ts +2 -0
- package/dist/commands/workspace/executor/install/index.js +17 -1
- package/dist/commands/workspace/executor/token/index.d.ts +2 -0
- package/dist/commands/workspace/executor/token/index.js +17 -0
- package/dist/commands/workspace/executor/uninstall/index.d.ts +2 -0
- package/dist/commands/workspace/executor/uninstall/index.js +17 -1
- package/dist/lib/ephemeral-token.d.ts +38 -0
- package/dist/lib/ephemeral-token.js +36 -0
- package/oclif.manifest.json +133 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@ $ npm install -g hereya-cli
|
|
|
21
21
|
$ hereya COMMAND
|
|
22
22
|
running command...
|
|
23
23
|
$ hereya (--version)
|
|
24
|
-
hereya-cli/0.
|
|
24
|
+
hereya-cli/0.86.0 linux-x64 node-v24.14.1
|
|
25
25
|
$ hereya --help [COMMAND]
|
|
26
26
|
USAGE
|
|
27
27
|
$ hereya COMMAND
|
|
@@ -127,7 +127,7 @@ EXAMPLES
|
|
|
127
127
|
$ hereya add cloudy/docker_postgres
|
|
128
128
|
```
|
|
129
129
|
|
|
130
|
-
_See code: [src/commands/add/index.ts](https://github.com/hereya/hereya-cli/blob/v0.
|
|
130
|
+
_See code: [src/commands/add/index.ts](https://github.com/hereya/hereya-cli/blob/v0.86.0/src/commands/add/index.ts)_
|
|
131
131
|
|
|
132
132
|
## `hereya app deploy NAME`
|
|
133
133
|
|
|
@@ -135,7 +135,8 @@ Deploy a hereya-app to a workspace.
|
|
|
135
135
|
|
|
136
136
|
```
|
|
137
137
|
USAGE
|
|
138
|
-
$ hereya app deploy NAME -w <value> [--chdir <value>] [--local] [-p <value>...] [--
|
|
138
|
+
$ hereya app deploy NAME -w <value> [--chdir <value>] [--local] [-p <value>...] [--token <value>] [--version
|
|
139
|
+
<value>]
|
|
139
140
|
|
|
140
141
|
ARGUMENTS
|
|
141
142
|
NAME app name in org/name format
|
|
@@ -148,6 +149,9 @@ FLAGS
|
|
|
148
149
|
Alternatively, you can define the project root by setting the HEREYA_PROJECT_ROOT_DIR
|
|
149
150
|
environment variable.
|
|
150
151
|
--local force local execution (skip remote executor)
|
|
152
|
+
--token=<value> Ephemeral cloud access token used for this invocation only. Held in memory; never written
|
|
153
|
+
to the keychain or `~/.hereya/secrets/`. Takes precedence over the HEREYA_TOKEN
|
|
154
|
+
environment variable.
|
|
151
155
|
--version=<value> specific app version to deploy (defaults to latest)
|
|
152
156
|
|
|
153
157
|
DESCRIPTION
|
|
@@ -161,7 +165,7 @@ EXAMPLES
|
|
|
161
165
|
$ hereya app deploy my-org/my-app -w prod -p organizationId=org-123
|
|
162
166
|
```
|
|
163
167
|
|
|
164
|
-
_See code: [src/commands/app/deploy/index.ts](https://github.com/hereya/hereya-cli/blob/v0.
|
|
168
|
+
_See code: [src/commands/app/deploy/index.ts](https://github.com/hereya/hereya-cli/blob/v0.86.0/src/commands/app/deploy/index.ts)_
|
|
165
169
|
|
|
166
170
|
## `hereya app deployments NAME`
|
|
167
171
|
|
|
@@ -169,11 +173,15 @@ List workspaces a hereya-app has been deployed to.
|
|
|
169
173
|
|
|
170
174
|
```
|
|
171
175
|
USAGE
|
|
172
|
-
$ hereya app deployments NAME
|
|
176
|
+
$ hereya app deployments NAME [--token <value>]
|
|
173
177
|
|
|
174
178
|
ARGUMENTS
|
|
175
179
|
NAME app name in org/name format
|
|
176
180
|
|
|
181
|
+
FLAGS
|
|
182
|
+
--token=<value> Ephemeral cloud access token used for this invocation only. Held in memory; never written to the
|
|
183
|
+
keychain or `~/.hereya/secrets/`. Takes precedence over the HEREYA_TOKEN environment variable.
|
|
184
|
+
|
|
177
185
|
DESCRIPTION
|
|
178
186
|
List workspaces a hereya-app has been deployed to.
|
|
179
187
|
|
|
@@ -181,7 +189,7 @@ EXAMPLES
|
|
|
181
189
|
$ hereya app deployments my-org/my-app
|
|
182
190
|
```
|
|
183
191
|
|
|
184
|
-
_See code: [src/commands/app/deployments/index.ts](https://github.com/hereya/hereya-cli/blob/v0.
|
|
192
|
+
_See code: [src/commands/app/deployments/index.ts](https://github.com/hereya/hereya-cli/blob/v0.86.0/src/commands/app/deployments/index.ts)_
|
|
185
193
|
|
|
186
194
|
## `hereya app destroy NAME`
|
|
187
195
|
|
|
@@ -189,7 +197,7 @@ Destroy a hereya-app deployment from a workspace.
|
|
|
189
197
|
|
|
190
198
|
```
|
|
191
199
|
USAGE
|
|
192
|
-
$ hereya app destroy NAME -w <value> [--chdir <value>] [--local] [-p <value>...]
|
|
200
|
+
$ hereya app destroy NAME -w <value> [--chdir <value>] [--local] [-p <value>...] [--token <value>]
|
|
193
201
|
|
|
194
202
|
ARGUMENTS
|
|
195
203
|
NAME app name in org/name format
|
|
@@ -202,6 +210,9 @@ FLAGS
|
|
|
202
210
|
Alternatively, you can define the project root by setting the HEREYA_PROJECT_ROOT_DIR
|
|
203
211
|
environment variable.
|
|
204
212
|
--local force local execution (skip remote executor)
|
|
213
|
+
--token=<value> Ephemeral cloud access token used for this invocation only. Held in memory; never written
|
|
214
|
+
to the keychain or `~/.hereya/secrets/`. Takes precedence over the HEREYA_TOKEN
|
|
215
|
+
environment variable.
|
|
205
216
|
|
|
206
217
|
DESCRIPTION
|
|
207
218
|
Destroy a hereya-app deployment from a workspace.
|
|
@@ -210,7 +221,7 @@ EXAMPLES
|
|
|
210
221
|
$ hereya app destroy my-org/my-app -w my-workspace
|
|
211
222
|
```
|
|
212
223
|
|
|
213
|
-
_See code: [src/commands/app/destroy/index.ts](https://github.com/hereya/hereya-cli/blob/v0.
|
|
224
|
+
_See code: [src/commands/app/destroy/index.ts](https://github.com/hereya/hereya-cli/blob/v0.86.0/src/commands/app/destroy/index.ts)_
|
|
214
225
|
|
|
215
226
|
## `hereya app env NAME [KEY]`
|
|
216
227
|
|
|
@@ -218,7 +229,7 @@ Print environment variables exported by a hereya-app deployment.
|
|
|
218
229
|
|
|
219
230
|
```
|
|
220
231
|
USAGE
|
|
221
|
-
$ hereya app env NAME [KEY] -w <value>
|
|
232
|
+
$ hereya app env NAME [KEY] -w <value> [--token <value>]
|
|
222
233
|
|
|
223
234
|
ARGUMENTS
|
|
224
235
|
NAME app name in org/name format
|
|
@@ -226,6 +237,9 @@ ARGUMENTS
|
|
|
226
237
|
|
|
227
238
|
FLAGS
|
|
228
239
|
-w, --workspace=<value> (required) workspace to read env outputs from
|
|
240
|
+
--token=<value> Ephemeral cloud access token used for this invocation only. Held in memory; never written to
|
|
241
|
+
the keychain or `~/.hereya/secrets/`. Takes precedence over the HEREYA_TOKEN environment
|
|
242
|
+
variable.
|
|
229
243
|
|
|
230
244
|
DESCRIPTION
|
|
231
245
|
Print environment variables exported by a hereya-app deployment.
|
|
@@ -236,7 +250,7 @@ EXAMPLES
|
|
|
236
250
|
$ hereya app env my-org/my-app -w my-workspace DATABASE_URL
|
|
237
251
|
```
|
|
238
252
|
|
|
239
|
-
_See code: [src/commands/app/env/index.ts](https://github.com/hereya/hereya-cli/blob/v0.
|
|
253
|
+
_See code: [src/commands/app/env/index.ts](https://github.com/hereya/hereya-cli/blob/v0.86.0/src/commands/app/env/index.ts)_
|
|
240
254
|
|
|
241
255
|
## `hereya app list`
|
|
242
256
|
|
|
@@ -244,7 +258,11 @@ List hereya-apps available to your account.
|
|
|
244
258
|
|
|
245
259
|
```
|
|
246
260
|
USAGE
|
|
247
|
-
$ hereya app list
|
|
261
|
+
$ hereya app list [--token <value>]
|
|
262
|
+
|
|
263
|
+
FLAGS
|
|
264
|
+
--token=<value> Ephemeral cloud access token used for this invocation only. Held in memory; never written to the
|
|
265
|
+
keychain or `~/.hereya/secrets/`. Takes precedence over the HEREYA_TOKEN environment variable.
|
|
248
266
|
|
|
249
267
|
DESCRIPTION
|
|
250
268
|
List hereya-apps available to your account.
|
|
@@ -253,7 +271,7 @@ EXAMPLES
|
|
|
253
271
|
$ hereya app list
|
|
254
272
|
```
|
|
255
273
|
|
|
256
|
-
_See code: [src/commands/app/list/index.ts](https://github.com/hereya/hereya-cli/blob/v0.
|
|
274
|
+
_See code: [src/commands/app/list/index.ts](https://github.com/hereya/hereya-cli/blob/v0.86.0/src/commands/app/list/index.ts)_
|
|
257
275
|
|
|
258
276
|
## `hereya app new DIRNAME`
|
|
259
277
|
|
|
@@ -279,7 +297,7 @@ EXAMPLES
|
|
|
279
297
|
$ hereya app new ./my-app -n my-org/my-app --description "An ai-app-builder app"
|
|
280
298
|
```
|
|
281
299
|
|
|
282
|
-
_See code: [src/commands/app/new/index.ts](https://github.com/hereya/hereya-cli/blob/v0.
|
|
300
|
+
_See code: [src/commands/app/new/index.ts](https://github.com/hereya/hereya-cli/blob/v0.86.0/src/commands/app/new/index.ts)_
|
|
283
301
|
|
|
284
302
|
## `hereya app status NAME`
|
|
285
303
|
|
|
@@ -287,13 +305,16 @@ Show the deployment status of a hereya-app on a workspace.
|
|
|
287
305
|
|
|
288
306
|
```
|
|
289
307
|
USAGE
|
|
290
|
-
$ hereya app status NAME -w <value>
|
|
308
|
+
$ hereya app status NAME -w <value> [--token <value>]
|
|
291
309
|
|
|
292
310
|
ARGUMENTS
|
|
293
311
|
NAME app name in org/name format
|
|
294
312
|
|
|
295
313
|
FLAGS
|
|
296
314
|
-w, --workspace=<value> (required) workspace to read deployment status from
|
|
315
|
+
--token=<value> Ephemeral cloud access token used for this invocation only. Held in memory; never written to
|
|
316
|
+
the keychain or `~/.hereya/secrets/`. Takes precedence over the HEREYA_TOKEN environment
|
|
317
|
+
variable.
|
|
297
318
|
|
|
298
319
|
DESCRIPTION
|
|
299
320
|
Show the deployment status of a hereya-app on a workspace.
|
|
@@ -302,7 +323,7 @@ EXAMPLES
|
|
|
302
323
|
$ hereya app status my-org/my-app -w my-workspace
|
|
303
324
|
```
|
|
304
325
|
|
|
305
|
-
_See code: [src/commands/app/status/index.ts](https://github.com/hereya/hereya-cli/blob/v0.
|
|
326
|
+
_See code: [src/commands/app/status/index.ts](https://github.com/hereya/hereya-cli/blob/v0.86.0/src/commands/app/status/index.ts)_
|
|
306
327
|
|
|
307
328
|
## `hereya bootstrap INFRASTRUCTURETYPE`
|
|
308
329
|
|
|
@@ -327,7 +348,7 @@ EXAMPLES
|
|
|
327
348
|
$ hereya bootstrap local
|
|
328
349
|
```
|
|
329
350
|
|
|
330
|
-
_See code: [src/commands/bootstrap/index.ts](https://github.com/hereya/hereya-cli/blob/v0.
|
|
351
|
+
_See code: [src/commands/bootstrap/index.ts](https://github.com/hereya/hereya-cli/blob/v0.86.0/src/commands/bootstrap/index.ts)_
|
|
331
352
|
|
|
332
353
|
## `hereya clone PROJECT`
|
|
333
354
|
|
|
@@ -352,7 +373,7 @@ EXAMPLES
|
|
|
352
373
|
$ hereya clone myProject --chdir=./myProject
|
|
353
374
|
```
|
|
354
375
|
|
|
355
|
-
_See code: [src/commands/clone/index.ts](https://github.com/hereya/hereya-cli/blob/v0.
|
|
376
|
+
_See code: [src/commands/clone/index.ts](https://github.com/hereya/hereya-cli/blob/v0.86.0/src/commands/clone/index.ts)_
|
|
356
377
|
|
|
357
378
|
## `hereya config export-backend [FILE]`
|
|
358
379
|
|
|
@@ -374,7 +395,7 @@ EXAMPLES
|
|
|
374
395
|
$ hereya config export-backend ./path/to/export.json
|
|
375
396
|
```
|
|
376
397
|
|
|
377
|
-
_See code: [src/commands/config/export-backend/index.ts](https://github.com/hereya/hereya-cli/blob/v0.
|
|
398
|
+
_See code: [src/commands/config/export-backend/index.ts](https://github.com/hereya/hereya-cli/blob/v0.86.0/src/commands/config/export-backend/index.ts)_
|
|
378
399
|
|
|
379
400
|
## `hereya config get-backend`
|
|
380
401
|
|
|
@@ -391,7 +412,7 @@ EXAMPLES
|
|
|
391
412
|
$ hereya config get-backend
|
|
392
413
|
```
|
|
393
414
|
|
|
394
|
-
_See code: [src/commands/config/get-backend/index.ts](https://github.com/hereya/hereya-cli/blob/v0.
|
|
415
|
+
_See code: [src/commands/config/get-backend/index.ts](https://github.com/hereya/hereya-cli/blob/v0.86.0/src/commands/config/get-backend/index.ts)_
|
|
395
416
|
|
|
396
417
|
## `hereya config import-backend FILE`
|
|
397
418
|
|
|
@@ -411,7 +432,7 @@ EXAMPLES
|
|
|
411
432
|
$ hereya config import-backend ./path/to/cloud-backend.json
|
|
412
433
|
```
|
|
413
434
|
|
|
414
|
-
_See code: [src/commands/config/import-backend/index.ts](https://github.com/hereya/hereya-cli/blob/v0.
|
|
435
|
+
_See code: [src/commands/config/import-backend/index.ts](https://github.com/hereya/hereya-cli/blob/v0.86.0/src/commands/config/import-backend/index.ts)_
|
|
415
436
|
|
|
416
437
|
## `hereya config use-backend TYPE`
|
|
417
438
|
|
|
@@ -433,7 +454,7 @@ EXAMPLES
|
|
|
433
454
|
$ hereya config use-backend local
|
|
434
455
|
```
|
|
435
456
|
|
|
436
|
-
_See code: [src/commands/config/use-backend/index.ts](https://github.com/hereya/hereya-cli/blob/v0.
|
|
457
|
+
_See code: [src/commands/config/use-backend/index.ts](https://github.com/hereya/hereya-cli/blob/v0.86.0/src/commands/config/use-backend/index.ts)_
|
|
437
458
|
|
|
438
459
|
## `hereya delete-state`
|
|
439
460
|
|
|
@@ -459,7 +480,7 @@ EXAMPLES
|
|
|
459
480
|
$ hereya delete-state --workspace staging
|
|
460
481
|
```
|
|
461
482
|
|
|
462
|
-
_See code: [src/commands/delete-state/index.ts](https://github.com/hereya/hereya-cli/blob/v0.
|
|
483
|
+
_See code: [src/commands/delete-state/index.ts](https://github.com/hereya/hereya-cli/blob/v0.86.0/src/commands/delete-state/index.ts)_
|
|
463
484
|
|
|
464
485
|
## `hereya deploy`
|
|
465
486
|
|
|
@@ -467,7 +488,7 @@ Deploy a hereya project using the project deployment package
|
|
|
467
488
|
|
|
468
489
|
```
|
|
469
490
|
USAGE
|
|
470
|
-
$ hereya deploy -w <value> [--chdir <value>] [--debug] [--local]
|
|
491
|
+
$ hereya deploy -w <value> [--chdir <value>] [--debug] [--local] [--token <value>]
|
|
471
492
|
|
|
472
493
|
FLAGS
|
|
473
494
|
-w, --workspace=<value> (required) name of the workspace to deploy the packages for
|
|
@@ -477,6 +498,9 @@ FLAGS
|
|
|
477
498
|
environment variable.
|
|
478
499
|
--debug enable debug mode
|
|
479
500
|
--local force local execution (skip remote executor)
|
|
501
|
+
--token=<value> Ephemeral cloud access token used for this invocation only. Held in memory; never written to
|
|
502
|
+
the keychain or `~/.hereya/secrets/`. Takes precedence over the HEREYA_TOKEN environment
|
|
503
|
+
variable.
|
|
480
504
|
|
|
481
505
|
DESCRIPTION
|
|
482
506
|
Deploy a hereya project using the project deployment package
|
|
@@ -485,7 +509,7 @@ EXAMPLES
|
|
|
485
509
|
$ hereya deploy
|
|
486
510
|
```
|
|
487
511
|
|
|
488
|
-
_See code: [src/commands/deploy/index.ts](https://github.com/hereya/hereya-cli/blob/v0.
|
|
512
|
+
_See code: [src/commands/deploy/index.ts](https://github.com/hereya/hereya-cli/blob/v0.86.0/src/commands/deploy/index.ts)_
|
|
489
513
|
|
|
490
514
|
## `hereya devenv config`
|
|
491
515
|
|
|
@@ -505,7 +529,7 @@ EXAMPLES
|
|
|
505
529
|
$ hereya devenv config -w my-workspace
|
|
506
530
|
```
|
|
507
531
|
|
|
508
|
-
_See code: [src/commands/devenv/config/index.ts](https://github.com/hereya/hereya-cli/blob/v0.
|
|
532
|
+
_See code: [src/commands/devenv/config/index.ts](https://github.com/hereya/hereya-cli/blob/v0.86.0/src/commands/devenv/config/index.ts)_
|
|
509
533
|
|
|
510
534
|
## `hereya devenv install`
|
|
511
535
|
|
|
@@ -530,7 +554,7 @@ EXAMPLES
|
|
|
530
554
|
$ hereya devenv install -w my-workspace -p instanceType=t3.large
|
|
531
555
|
```
|
|
532
556
|
|
|
533
|
-
_See code: [src/commands/devenv/install/index.ts](https://github.com/hereya/hereya-cli/blob/v0.
|
|
557
|
+
_See code: [src/commands/devenv/install/index.ts](https://github.com/hereya/hereya-cli/blob/v0.86.0/src/commands/devenv/install/index.ts)_
|
|
534
558
|
|
|
535
559
|
## `hereya devenv project init PROJECT`
|
|
536
560
|
|
|
@@ -562,7 +586,7 @@ EXAMPLES
|
|
|
562
586
|
$ hereya devenv project init my-app -w my-workspace -t acme/node-starter -p region=us-east-1
|
|
563
587
|
```
|
|
564
588
|
|
|
565
|
-
_See code: [src/commands/devenv/project/init/index.ts](https://github.com/hereya/hereya-cli/blob/v0.
|
|
589
|
+
_See code: [src/commands/devenv/project/init/index.ts](https://github.com/hereya/hereya-cli/blob/v0.86.0/src/commands/devenv/project/init/index.ts)_
|
|
566
590
|
|
|
567
591
|
## `hereya devenv project uninit PROJECT`
|
|
568
592
|
|
|
@@ -588,7 +612,7 @@ EXAMPLES
|
|
|
588
612
|
$ hereya devenv project uninit my-app -w my-workspace --force
|
|
589
613
|
```
|
|
590
614
|
|
|
591
|
-
_See code: [src/commands/devenv/project/uninit/index.ts](https://github.com/hereya/hereya-cli/blob/v0.
|
|
615
|
+
_See code: [src/commands/devenv/project/uninit/index.ts](https://github.com/hereya/hereya-cli/blob/v0.86.0/src/commands/devenv/project/uninit/index.ts)_
|
|
592
616
|
|
|
593
617
|
## `hereya devenv ssh`
|
|
594
618
|
|
|
@@ -608,7 +632,7 @@ EXAMPLES
|
|
|
608
632
|
$ hereya devenv ssh -w my-workspace
|
|
609
633
|
```
|
|
610
634
|
|
|
611
|
-
_See code: [src/commands/devenv/ssh/index.ts](https://github.com/hereya/hereya-cli/blob/v0.
|
|
635
|
+
_See code: [src/commands/devenv/ssh/index.ts](https://github.com/hereya/hereya-cli/blob/v0.86.0/src/commands/devenv/ssh/index.ts)_
|
|
612
636
|
|
|
613
637
|
## `hereya devenv uninstall`
|
|
614
638
|
|
|
@@ -629,7 +653,7 @@ EXAMPLES
|
|
|
629
653
|
$ hereya devenv uninstall -w my-workspace
|
|
630
654
|
```
|
|
631
655
|
|
|
632
|
-
_See code: [src/commands/devenv/uninstall/index.ts](https://github.com/hereya/hereya-cli/blob/v0.
|
|
656
|
+
_See code: [src/commands/devenv/uninstall/index.ts](https://github.com/hereya/hereya-cli/blob/v0.86.0/src/commands/devenv/uninstall/index.ts)_
|
|
633
657
|
|
|
634
658
|
## `hereya doc PACKAGE`
|
|
635
659
|
|
|
@@ -662,7 +686,7 @@ EXAMPLES
|
|
|
662
686
|
$ hereya doc my-package --no-doc
|
|
663
687
|
```
|
|
664
688
|
|
|
665
|
-
_See code: [src/commands/doc/index.ts](https://github.com/hereya/hereya-cli/blob/v0.
|
|
689
|
+
_See code: [src/commands/doc/index.ts](https://github.com/hereya/hereya-cli/blob/v0.86.0/src/commands/doc/index.ts)_
|
|
666
690
|
|
|
667
691
|
## `hereya docker run IMAGE`
|
|
668
692
|
|
|
@@ -693,7 +717,7 @@ EXAMPLES
|
|
|
693
717
|
$ hereya docker run myapp:latest -- --rm -v ./data:/data
|
|
694
718
|
```
|
|
695
719
|
|
|
696
|
-
_See code: [src/commands/docker/run/index.ts](https://github.com/hereya/hereya-cli/blob/v0.
|
|
720
|
+
_See code: [src/commands/docker/run/index.ts](https://github.com/hereya/hereya-cli/blob/v0.86.0/src/commands/docker/run/index.ts)_
|
|
697
721
|
|
|
698
722
|
## `hereya down`
|
|
699
723
|
|
|
@@ -720,7 +744,7 @@ EXAMPLES
|
|
|
720
744
|
$ hereya down
|
|
721
745
|
```
|
|
722
746
|
|
|
723
|
-
_See code: [src/commands/down/index.ts](https://github.com/hereya/hereya-cli/blob/v0.
|
|
747
|
+
_See code: [src/commands/down/index.ts](https://github.com/hereya/hereya-cli/blob/v0.86.0/src/commands/down/index.ts)_
|
|
724
748
|
|
|
725
749
|
## `hereya env [NAME]`
|
|
726
750
|
|
|
@@ -751,7 +775,7 @@ EXAMPLES
|
|
|
751
775
|
$ hereya env -w dev -l
|
|
752
776
|
```
|
|
753
777
|
|
|
754
|
-
_See code: [src/commands/env/index.ts](https://github.com/hereya/hereya-cli/blob/v0.
|
|
778
|
+
_See code: [src/commands/env/index.ts](https://github.com/hereya/hereya-cli/blob/v0.86.0/src/commands/env/index.ts)_
|
|
755
779
|
|
|
756
780
|
## `hereya env set [NAME]`
|
|
757
781
|
|
|
@@ -778,7 +802,7 @@ EXAMPLES
|
|
|
778
802
|
$ hereya env set FOO -v bar -w dev
|
|
779
803
|
```
|
|
780
804
|
|
|
781
|
-
_See code: [src/commands/env/set/index.ts](https://github.com/hereya/hereya-cli/blob/v0.
|
|
805
|
+
_See code: [src/commands/env/set/index.ts](https://github.com/hereya/hereya-cli/blob/v0.86.0/src/commands/env/set/index.ts)_
|
|
782
806
|
|
|
783
807
|
## `hereya executor start`
|
|
784
808
|
|
|
@@ -811,7 +835,7 @@ EXAMPLES
|
|
|
811
835
|
HEREYA_TOKEN=<token> HEREYA_CLOUD_URL=https://my-cloud.example.com hereya executor start -w my-workspace
|
|
812
836
|
```
|
|
813
837
|
|
|
814
|
-
_See code: [src/commands/executor/start/index.ts](https://github.com/hereya/hereya-cli/blob/v0.
|
|
838
|
+
_See code: [src/commands/executor/start/index.ts](https://github.com/hereya/hereya-cli/blob/v0.86.0/src/commands/executor/start/index.ts)_
|
|
815
839
|
|
|
816
840
|
## `hereya flow add PACKAGE`
|
|
817
841
|
|
|
@@ -849,7 +873,7 @@ EXAMPLES
|
|
|
849
873
|
$ hereya flow add cloudy/docker_postgres -p DB_NAME=mydb -p DB_USER=admin
|
|
850
874
|
```
|
|
851
875
|
|
|
852
|
-
_See code: [src/commands/flow/add/index.ts](https://github.com/hereya/hereya-cli/blob/v0.
|
|
876
|
+
_See code: [src/commands/flow/add/index.ts](https://github.com/hereya/hereya-cli/blob/v0.86.0/src/commands/flow/add/index.ts)_
|
|
853
877
|
|
|
854
878
|
## `hereya flow docker run IMAGE`
|
|
855
879
|
|
|
@@ -879,7 +903,7 @@ EXAMPLES
|
|
|
879
903
|
$ hereya flow docker run --pin myapp:latest -- --rm
|
|
880
904
|
```
|
|
881
905
|
|
|
882
|
-
_See code: [src/commands/flow/docker/run/index.ts](https://github.com/hereya/hereya-cli/blob/v0.
|
|
906
|
+
_See code: [src/commands/flow/docker/run/index.ts](https://github.com/hereya/hereya-cli/blob/v0.86.0/src/commands/flow/docker/run/index.ts)_
|
|
883
907
|
|
|
884
908
|
## `hereya flow down`
|
|
885
909
|
|
|
@@ -913,7 +937,7 @@ EXAMPLES
|
|
|
913
937
|
$ hereya flow down --pin
|
|
914
938
|
```
|
|
915
939
|
|
|
916
|
-
_See code: [src/commands/flow/down/index.ts](https://github.com/hereya/hereya-cli/blob/v0.
|
|
940
|
+
_See code: [src/commands/flow/down/index.ts](https://github.com/hereya/hereya-cli/blob/v0.86.0/src/commands/flow/down/index.ts)_
|
|
917
941
|
|
|
918
942
|
## `hereya flow env [NAME]`
|
|
919
943
|
|
|
@@ -947,7 +971,7 @@ EXAMPLES
|
|
|
947
971
|
$ hereya flow env -l
|
|
948
972
|
```
|
|
949
973
|
|
|
950
|
-
_See code: [src/commands/flow/env/index.ts](https://github.com/hereya/hereya-cli/blob/v0.
|
|
974
|
+
_See code: [src/commands/flow/env/index.ts](https://github.com/hereya/hereya-cli/blob/v0.86.0/src/commands/flow/env/index.ts)_
|
|
951
975
|
|
|
952
976
|
## `hereya flow provid PACKAGE`
|
|
953
977
|
|
|
@@ -976,7 +1000,7 @@ EXAMPLES
|
|
|
976
1000
|
$ hereya flow provid hereya/postgres --pin
|
|
977
1001
|
```
|
|
978
1002
|
|
|
979
|
-
_See code: [src/commands/flow/provid/index.ts](https://github.com/hereya/hereya-cli/blob/v0.
|
|
1003
|
+
_See code: [src/commands/flow/provid/index.ts](https://github.com/hereya/hereya-cli/blob/v0.86.0/src/commands/flow/provid/index.ts)_
|
|
980
1004
|
|
|
981
1005
|
## `hereya flow remove PACKAGE`
|
|
982
1006
|
|
|
@@ -1006,7 +1030,7 @@ EXAMPLES
|
|
|
1006
1030
|
$ hereya flow remove cloudy/docker_postgres --profile staging
|
|
1007
1031
|
```
|
|
1008
1032
|
|
|
1009
|
-
_See code: [src/commands/flow/remove/index.ts](https://github.com/hereya/hereya-cli/blob/v0.
|
|
1033
|
+
_See code: [src/commands/flow/remove/index.ts](https://github.com/hereya/hereya-cli/blob/v0.86.0/src/commands/flow/remove/index.ts)_
|
|
1010
1034
|
|
|
1011
1035
|
## `hereya flow run CMD`
|
|
1012
1036
|
|
|
@@ -1035,7 +1059,7 @@ EXAMPLES
|
|
|
1035
1059
|
$ hereya flow run --pin -- npm test
|
|
1036
1060
|
```
|
|
1037
1061
|
|
|
1038
|
-
_See code: [src/commands/flow/run/index.ts](https://github.com/hereya/hereya-cli/blob/v0.
|
|
1062
|
+
_See code: [src/commands/flow/run/index.ts](https://github.com/hereya/hereya-cli/blob/v0.86.0/src/commands/flow/run/index.ts)_
|
|
1039
1063
|
|
|
1040
1064
|
## `hereya flow up`
|
|
1041
1065
|
|
|
@@ -1069,7 +1093,7 @@ EXAMPLES
|
|
|
1069
1093
|
$ hereya flow up --pin
|
|
1070
1094
|
```
|
|
1071
1095
|
|
|
1072
|
-
_See code: [src/commands/flow/up/index.ts](https://github.com/hereya/hereya-cli/blob/v0.
|
|
1096
|
+
_See code: [src/commands/flow/up/index.ts](https://github.com/hereya/hereya-cli/blob/v0.86.0/src/commands/flow/up/index.ts)_
|
|
1073
1097
|
|
|
1074
1098
|
## `hereya help [COMMAND]`
|
|
1075
1099
|
|
|
@@ -1126,7 +1150,7 @@ EXAMPLES
|
|
|
1126
1150
|
$ hereya import org/my-package -f state.tfstate -w my-workspace
|
|
1127
1151
|
```
|
|
1128
1152
|
|
|
1129
|
-
_See code: [src/commands/import/index.ts](https://github.com/hereya/hereya-cli/blob/v0.
|
|
1153
|
+
_See code: [src/commands/import/index.ts](https://github.com/hereya/hereya-cli/blob/v0.86.0/src/commands/import/index.ts)_
|
|
1130
1154
|
|
|
1131
1155
|
## `hereya init PROJECT`
|
|
1132
1156
|
|
|
@@ -1134,7 +1158,8 @@ Initialize hereya in a project directory.
|
|
|
1134
1158
|
|
|
1135
1159
|
```
|
|
1136
1160
|
USAGE
|
|
1137
|
-
$ hereya init PROJECT -w <value> [--chdir <value>] [-d <value>] [-p <value>...] [-t <value>]
|
|
1161
|
+
$ hereya init PROJECT -w <value> [--chdir <value>] [-d <value>] [-p <value>...] [-t <value>] [--token
|
|
1162
|
+
<value>]
|
|
1138
1163
|
|
|
1139
1164
|
ARGUMENTS
|
|
1140
1165
|
PROJECT project name
|
|
@@ -1146,6 +1171,9 @@ FLAGS
|
|
|
1146
1171
|
-t, --template=<value> template package name (e.g. owner/repo)
|
|
1147
1172
|
-w, --workspace=<value> (required) workspace to set as default
|
|
1148
1173
|
--chdir=<value> directory to run command in
|
|
1174
|
+
--token=<value> Ephemeral cloud access token used for this invocation only. Held in memory; never
|
|
1175
|
+
written to the keychain or `~/.hereya/secrets/`. Takes precedence over the
|
|
1176
|
+
HEREYA_TOKEN environment variable.
|
|
1149
1177
|
|
|
1150
1178
|
DESCRIPTION
|
|
1151
1179
|
Initialize hereya in a project directory.
|
|
@@ -1160,7 +1188,7 @@ EXAMPLES
|
|
|
1160
1188
|
$ hereya init myProject -w=dev -t=acme/node-starter -d=prod -p region=us-east-1
|
|
1161
1189
|
```
|
|
1162
1190
|
|
|
1163
|
-
_See code: [src/commands/init/index.ts](https://github.com/hereya/hereya-cli/blob/v0.
|
|
1191
|
+
_See code: [src/commands/init/index.ts](https://github.com/hereya/hereya-cli/blob/v0.86.0/src/commands/init/index.ts)_
|
|
1164
1192
|
|
|
1165
1193
|
## `hereya list`
|
|
1166
1194
|
|
|
@@ -1177,7 +1205,7 @@ EXAMPLES
|
|
|
1177
1205
|
$ hereya list
|
|
1178
1206
|
```
|
|
1179
1207
|
|
|
1180
|
-
_See code: [src/commands/list/index.ts](https://github.com/hereya/hereya-cli/blob/v0.
|
|
1208
|
+
_See code: [src/commands/list/index.ts](https://github.com/hereya/hereya-cli/blob/v0.86.0/src/commands/list/index.ts)_
|
|
1181
1209
|
|
|
1182
1210
|
## `hereya login [URL]`
|
|
1183
1211
|
|
|
@@ -1206,7 +1234,7 @@ EXAMPLES
|
|
|
1206
1234
|
$ hereya login --token=your-token https://cloud.hereya.dev
|
|
1207
1235
|
```
|
|
1208
1236
|
|
|
1209
|
-
_See code: [src/commands/login/index.ts](https://github.com/hereya/hereya-cli/blob/v0.
|
|
1237
|
+
_See code: [src/commands/login/index.ts](https://github.com/hereya/hereya-cli/blob/v0.86.0/src/commands/login/index.ts)_
|
|
1210
1238
|
|
|
1211
1239
|
## `hereya logout`
|
|
1212
1240
|
|
|
@@ -1223,7 +1251,7 @@ EXAMPLES
|
|
|
1223
1251
|
$ hereya logout
|
|
1224
1252
|
```
|
|
1225
1253
|
|
|
1226
|
-
_See code: [src/commands/logout/index.ts](https://github.com/hereya/hereya-cli/blob/v0.
|
|
1254
|
+
_See code: [src/commands/logout/index.ts](https://github.com/hereya/hereya-cli/blob/v0.86.0/src/commands/logout/index.ts)_
|
|
1227
1255
|
|
|
1228
1256
|
## `hereya provid PACKAGE`
|
|
1229
1257
|
|
|
@@ -1251,7 +1279,7 @@ EXAMPLES
|
|
|
1251
1279
|
$ hereya provid hereya/postgres --workspace staging
|
|
1252
1280
|
```
|
|
1253
1281
|
|
|
1254
|
-
_See code: [src/commands/provid/index.ts](https://github.com/hereya/hereya-cli/blob/v0.
|
|
1282
|
+
_See code: [src/commands/provid/index.ts](https://github.com/hereya/hereya-cli/blob/v0.86.0/src/commands/provid/index.ts)_
|
|
1255
1283
|
|
|
1256
1284
|
## `hereya publish`
|
|
1257
1285
|
|
|
@@ -1259,11 +1287,13 @@ Publish a package to the Hereya registry
|
|
|
1259
1287
|
|
|
1260
1288
|
```
|
|
1261
1289
|
USAGE
|
|
1262
|
-
$ hereya publish [--chdir <value>]
|
|
1290
|
+
$ hereya publish [--chdir <value>] [--token <value>]
|
|
1263
1291
|
|
|
1264
1292
|
FLAGS
|
|
1265
1293
|
--chdir=<value> Directory where the command will be executed.
|
|
1266
1294
|
If not specified, it defaults to the current working directory.
|
|
1295
|
+
--token=<value> Ephemeral cloud access token used for this invocation only. Held in memory; never written to the
|
|
1296
|
+
keychain or `~/.hereya/secrets/`. Takes precedence over the HEREYA_TOKEN environment variable.
|
|
1267
1297
|
|
|
1268
1298
|
DESCRIPTION
|
|
1269
1299
|
Publish a package to the Hereya registry
|
|
@@ -1274,7 +1304,7 @@ EXAMPLES
|
|
|
1274
1304
|
$ hereya publish --chdir=/path/to/package
|
|
1275
1305
|
```
|
|
1276
1306
|
|
|
1277
|
-
_See code: [src/commands/publish/index.ts](https://github.com/hereya/hereya-cli/blob/v0.
|
|
1307
|
+
_See code: [src/commands/publish/index.ts](https://github.com/hereya/hereya-cli/blob/v0.86.0/src/commands/publish/index.ts)_
|
|
1278
1308
|
|
|
1279
1309
|
## `hereya remove PACKAGE`
|
|
1280
1310
|
|
|
@@ -1302,7 +1332,7 @@ EXAMPLES
|
|
|
1302
1332
|
$ hereya remove cloudy/docker_postgres
|
|
1303
1333
|
```
|
|
1304
1334
|
|
|
1305
|
-
_See code: [src/commands/remove/index.ts](https://github.com/hereya/hereya-cli/blob/v0.
|
|
1335
|
+
_See code: [src/commands/remove/index.ts](https://github.com/hereya/hereya-cli/blob/v0.86.0/src/commands/remove/index.ts)_
|
|
1306
1336
|
|
|
1307
1337
|
## `hereya run CMD`
|
|
1308
1338
|
|
|
@@ -1310,7 +1340,7 @@ Run a command with hereya env vars.
|
|
|
1310
1340
|
|
|
1311
1341
|
```
|
|
1312
1342
|
USAGE
|
|
1313
|
-
$ hereya run CMD... [--chdir <value>] [-w <value>]
|
|
1343
|
+
$ hereya run CMD... [--chdir <value>] [--token <value>] [-w <value>]
|
|
1314
1344
|
|
|
1315
1345
|
ARGUMENTS
|
|
1316
1346
|
CMD... command to run
|
|
@@ -1318,6 +1348,9 @@ ARGUMENTS
|
|
|
1318
1348
|
FLAGS
|
|
1319
1349
|
-w, --workspace=<value> name of the workspace to run the command in
|
|
1320
1350
|
--chdir=<value> directory to run command in
|
|
1351
|
+
--token=<value> Ephemeral cloud access token used for this invocation only. Held in memory; never written to
|
|
1352
|
+
the keychain or `~/.hereya/secrets/`. Takes precedence over the HEREYA_TOKEN environment
|
|
1353
|
+
variable.
|
|
1321
1354
|
|
|
1322
1355
|
DESCRIPTION
|
|
1323
1356
|
Run a command with hereya env vars.
|
|
@@ -1328,7 +1361,7 @@ EXAMPLES
|
|
|
1328
1361
|
$ hereya run -w uat -- node index.js
|
|
1329
1362
|
```
|
|
1330
1363
|
|
|
1331
|
-
_See code: [src/commands/run/index.ts](https://github.com/hereya/hereya-cli/blob/v0.
|
|
1364
|
+
_See code: [src/commands/run/index.ts](https://github.com/hereya/hereya-cli/blob/v0.86.0/src/commands/run/index.ts)_
|
|
1332
1365
|
|
|
1333
1366
|
## `hereya search QUERY`
|
|
1334
1367
|
|
|
@@ -1336,7 +1369,7 @@ Search for packages in the registry
|
|
|
1336
1369
|
|
|
1337
1370
|
```
|
|
1338
1371
|
USAGE
|
|
1339
|
-
$ hereya search QUERY [-C <value>] [-j] [-l <value>]
|
|
1372
|
+
$ hereya search QUERY [-C <value>] [-j] [-l <value>] [--token <value>]
|
|
1340
1373
|
|
|
1341
1374
|
ARGUMENTS
|
|
1342
1375
|
QUERY Search query string
|
|
@@ -1344,6 +1377,8 @@ ARGUMENTS
|
|
|
1344
1377
|
FLAGS
|
|
1345
1378
|
-j, --json Output in JSON format
|
|
1346
1379
|
-l, --limit=<value> [default: 20] Maximum number of results to return
|
|
1380
|
+
--token=<value> Ephemeral cloud access token used for this invocation only. Held in memory; never written to the
|
|
1381
|
+
keychain or `~/.hereya/secrets/`. Takes precedence over the HEREYA_TOKEN environment variable.
|
|
1347
1382
|
|
|
1348
1383
|
GLOBAL FLAGS
|
|
1349
1384
|
-C, --chdir=<value> [default: .] directory to run command in
|
|
@@ -1359,7 +1394,7 @@ EXAMPLES
|
|
|
1359
1394
|
$ hereya search database --json
|
|
1360
1395
|
```
|
|
1361
1396
|
|
|
1362
|
-
_See code: [src/commands/search/index.ts](https://github.com/hereya/hereya-cli/blob/v0.
|
|
1397
|
+
_See code: [src/commands/search/index.ts](https://github.com/hereya/hereya-cli/blob/v0.86.0/src/commands/search/index.ts)_
|
|
1363
1398
|
|
|
1364
1399
|
## `hereya unbootstrap INFRASTRUCTURETYPE`
|
|
1365
1400
|
|
|
@@ -1384,7 +1419,7 @@ EXAMPLES
|
|
|
1384
1419
|
$ hereya unbootstrap local
|
|
1385
1420
|
```
|
|
1386
1421
|
|
|
1387
|
-
_See code: [src/commands/unbootstrap/index.ts](https://github.com/hereya/hereya-cli/blob/v0.
|
|
1422
|
+
_See code: [src/commands/unbootstrap/index.ts](https://github.com/hereya/hereya-cli/blob/v0.86.0/src/commands/unbootstrap/index.ts)_
|
|
1388
1423
|
|
|
1389
1424
|
## `hereya undeploy`
|
|
1390
1425
|
|
|
@@ -1392,7 +1427,7 @@ Undeploy a hereya project by removing all resources.
|
|
|
1392
1427
|
|
|
1393
1428
|
```
|
|
1394
1429
|
USAGE
|
|
1395
|
-
$ hereya undeploy -w <value> [--chdir <value>] [--debug] [--local]
|
|
1430
|
+
$ hereya undeploy -w <value> [--chdir <value>] [--debug] [--local] [--token <value>]
|
|
1396
1431
|
|
|
1397
1432
|
FLAGS
|
|
1398
1433
|
-w, --workspace=<value> (required) name of the workspace to undeploy the packages for
|
|
@@ -1402,6 +1437,9 @@ FLAGS
|
|
|
1402
1437
|
environment variable.
|
|
1403
1438
|
--debug enable debug mode
|
|
1404
1439
|
--local force local execution (skip remote executor)
|
|
1440
|
+
--token=<value> Ephemeral cloud access token used for this invocation only. Held in memory; never written to
|
|
1441
|
+
the keychain or `~/.hereya/secrets/`. Takes precedence over the HEREYA_TOKEN environment
|
|
1442
|
+
variable.
|
|
1405
1443
|
|
|
1406
1444
|
DESCRIPTION
|
|
1407
1445
|
Undeploy a hereya project by removing all resources.
|
|
@@ -1410,7 +1448,7 @@ EXAMPLES
|
|
|
1410
1448
|
$ hereya undeploy
|
|
1411
1449
|
```
|
|
1412
1450
|
|
|
1413
|
-
_See code: [src/commands/undeploy/index.ts](https://github.com/hereya/hereya-cli/blob/v0.
|
|
1451
|
+
_See code: [src/commands/undeploy/index.ts](https://github.com/hereya/hereya-cli/blob/v0.86.0/src/commands/undeploy/index.ts)_
|
|
1414
1452
|
|
|
1415
1453
|
## `hereya uninit PROJECT`
|
|
1416
1454
|
|
|
@@ -1438,7 +1476,7 @@ EXAMPLES
|
|
|
1438
1476
|
$ hereya uninit myProject -w dev -p prodWorkspace=prod
|
|
1439
1477
|
```
|
|
1440
1478
|
|
|
1441
|
-
_See code: [src/commands/uninit/index.ts](https://github.com/hereya/hereya-cli/blob/v0.
|
|
1479
|
+
_See code: [src/commands/uninit/index.ts](https://github.com/hereya/hereya-cli/blob/v0.86.0/src/commands/uninit/index.ts)_
|
|
1442
1480
|
|
|
1443
1481
|
## `hereya up`
|
|
1444
1482
|
|
|
@@ -1446,7 +1484,7 @@ Provision all packages in the project.
|
|
|
1446
1484
|
|
|
1447
1485
|
```
|
|
1448
1486
|
USAGE
|
|
1449
|
-
$ hereya up [--chdir <value>] [--debug] [--deploy] [-s <value>...] [-w <value>]
|
|
1487
|
+
$ hereya up [--chdir <value>] [--debug] [--deploy] [-s <value>...] [--token <value>] [-w <value>]
|
|
1450
1488
|
|
|
1451
1489
|
FLAGS
|
|
1452
1490
|
-s, --select=<value>... [default: ] select the packages to provision
|
|
@@ -1457,6 +1495,9 @@ FLAGS
|
|
|
1457
1495
|
environment variable.
|
|
1458
1496
|
--debug enable debug mode
|
|
1459
1497
|
--deploy provision deployment companion packages
|
|
1498
|
+
--token=<value> Ephemeral cloud access token used for this invocation only. Held in memory; never written to
|
|
1499
|
+
the keychain or `~/.hereya/secrets/`. Takes precedence over the HEREYA_TOKEN environment
|
|
1500
|
+
variable.
|
|
1460
1501
|
|
|
1461
1502
|
DESCRIPTION
|
|
1462
1503
|
Provision all packages in the project.
|
|
@@ -1465,7 +1506,7 @@ EXAMPLES
|
|
|
1465
1506
|
$ hereya up
|
|
1466
1507
|
```
|
|
1467
1508
|
|
|
1468
|
-
_See code: [src/commands/up/index.ts](https://github.com/hereya/hereya-cli/blob/v0.
|
|
1509
|
+
_See code: [src/commands/up/index.ts](https://github.com/hereya/hereya-cli/blob/v0.86.0/src/commands/up/index.ts)_
|
|
1469
1510
|
|
|
1470
1511
|
## `hereya update [VERSION]`
|
|
1471
1512
|
|
|
@@ -1487,7 +1528,7 @@ EXAMPLES
|
|
|
1487
1528
|
$ hereya update 0.75.0
|
|
1488
1529
|
```
|
|
1489
1530
|
|
|
1490
|
-
_See code: [src/commands/update/index.ts](https://github.com/hereya/hereya-cli/blob/v0.
|
|
1531
|
+
_See code: [src/commands/update/index.ts](https://github.com/hereya/hereya-cli/blob/v0.86.0/src/commands/update/index.ts)_
|
|
1491
1532
|
|
|
1492
1533
|
## `hereya workspace create NAME`
|
|
1493
1534
|
|
|
@@ -1512,7 +1553,7 @@ EXAMPLES
|
|
|
1512
1553
|
$ hereya workspace create dev
|
|
1513
1554
|
```
|
|
1514
1555
|
|
|
1515
|
-
_See code: [src/commands/workspace/create/index.ts](https://github.com/hereya/hereya-cli/blob/v0.
|
|
1556
|
+
_See code: [src/commands/workspace/create/index.ts](https://github.com/hereya/hereya-cli/blob/v0.86.0/src/commands/workspace/create/index.ts)_
|
|
1516
1557
|
|
|
1517
1558
|
## `hereya workspace delete NAME`
|
|
1518
1559
|
|
|
@@ -1532,7 +1573,7 @@ EXAMPLES
|
|
|
1532
1573
|
$ hereya workspace delete dev
|
|
1533
1574
|
```
|
|
1534
1575
|
|
|
1535
|
-
_See code: [src/commands/workspace/delete/index.ts](https://github.com/hereya/hereya-cli/blob/v0.
|
|
1576
|
+
_See code: [src/commands/workspace/delete/index.ts](https://github.com/hereya/hereya-cli/blob/v0.86.0/src/commands/workspace/delete/index.ts)_
|
|
1536
1577
|
|
|
1537
1578
|
## `hereya workspace env [NAME]`
|
|
1538
1579
|
|
|
@@ -1558,7 +1599,7 @@ EXAMPLES
|
|
|
1558
1599
|
$ hereya workspace env myEnv -w dev
|
|
1559
1600
|
```
|
|
1560
1601
|
|
|
1561
|
-
_See code: [src/commands/workspace/env/index.ts](https://github.com/hereya/hereya-cli/blob/v0.
|
|
1602
|
+
_See code: [src/commands/workspace/env/index.ts](https://github.com/hereya/hereya-cli/blob/v0.86.0/src/commands/workspace/env/index.ts)_
|
|
1562
1603
|
|
|
1563
1604
|
## `hereya workspace env set`
|
|
1564
1605
|
|
|
@@ -1582,7 +1623,7 @@ EXAMPLES
|
|
|
1582
1623
|
$ hereya workspace env set -w my-workspace -n myVar -v my-value -i aws -s
|
|
1583
1624
|
```
|
|
1584
1625
|
|
|
1585
|
-
_See code: [src/commands/workspace/env/set/index.ts](https://github.com/hereya/hereya-cli/blob/v0.
|
|
1626
|
+
_See code: [src/commands/workspace/env/set/index.ts](https://github.com/hereya/hereya-cli/blob/v0.86.0/src/commands/workspace/env/set/index.ts)_
|
|
1586
1627
|
|
|
1587
1628
|
## `hereya workspace env unset`
|
|
1588
1629
|
|
|
@@ -1603,7 +1644,7 @@ EXAMPLES
|
|
|
1603
1644
|
$ hereya workspace env unset -w my-workspace -n myVar
|
|
1604
1645
|
```
|
|
1605
1646
|
|
|
1606
|
-
_See code: [src/commands/workspace/env/unset/index.ts](https://github.com/hereya/hereya-cli/blob/v0.
|
|
1647
|
+
_See code: [src/commands/workspace/env/unset/index.ts](https://github.com/hereya/hereya-cli/blob/v0.86.0/src/commands/workspace/env/unset/index.ts)_
|
|
1607
1648
|
|
|
1608
1649
|
## `hereya workspace executor install`
|
|
1609
1650
|
|
|
@@ -1611,18 +1652,21 @@ Install a remote executor into a workspace
|
|
|
1611
1652
|
|
|
1612
1653
|
```
|
|
1613
1654
|
USAGE
|
|
1614
|
-
$ hereya workspace executor install -w <value> [--debug] [-f]
|
|
1655
|
+
$ hereya workspace executor install -w <value> [--debug] [-f] [--token <value>]
|
|
1615
1656
|
|
|
1616
1657
|
FLAGS
|
|
1617
1658
|
-f, --force force reinstall even if executor is already installed
|
|
1618
1659
|
-w, --workspace=<value> (required) name of the workspace
|
|
1619
1660
|
--debug enable debug mode
|
|
1661
|
+
--token=<value> Ephemeral cloud access token used for this invocation only. Held in memory; never written to
|
|
1662
|
+
the keychain or `~/.hereya/secrets/`. Takes precedence over the HEREYA_TOKEN environment
|
|
1663
|
+
variable.
|
|
1620
1664
|
|
|
1621
1665
|
DESCRIPTION
|
|
1622
1666
|
Install a remote executor into a workspace
|
|
1623
1667
|
```
|
|
1624
1668
|
|
|
1625
|
-
_See code: [src/commands/workspace/executor/install/index.ts](https://github.com/hereya/hereya-cli/blob/v0.
|
|
1669
|
+
_See code: [src/commands/workspace/executor/install/index.ts](https://github.com/hereya/hereya-cli/blob/v0.86.0/src/commands/workspace/executor/install/index.ts)_
|
|
1626
1670
|
|
|
1627
1671
|
## `hereya workspace executor token`
|
|
1628
1672
|
|
|
@@ -1630,16 +1674,19 @@ Generate a workspace-scoped executor token for the remote executor
|
|
|
1630
1674
|
|
|
1631
1675
|
```
|
|
1632
1676
|
USAGE
|
|
1633
|
-
$ hereya workspace executor token -w <value>
|
|
1677
|
+
$ hereya workspace executor token -w <value> [--token <value>]
|
|
1634
1678
|
|
|
1635
1679
|
FLAGS
|
|
1636
1680
|
-w, --workspace=<value> (required) name of the workspace
|
|
1681
|
+
--token=<value> Ephemeral cloud access token used for this invocation only. Held in memory; never written to
|
|
1682
|
+
the keychain or `~/.hereya/secrets/`. Takes precedence over the HEREYA_TOKEN environment
|
|
1683
|
+
variable.
|
|
1637
1684
|
|
|
1638
1685
|
DESCRIPTION
|
|
1639
1686
|
Generate a workspace-scoped executor token for the remote executor
|
|
1640
1687
|
```
|
|
1641
1688
|
|
|
1642
|
-
_See code: [src/commands/workspace/executor/token/index.ts](https://github.com/hereya/hereya-cli/blob/v0.
|
|
1689
|
+
_See code: [src/commands/workspace/executor/token/index.ts](https://github.com/hereya/hereya-cli/blob/v0.86.0/src/commands/workspace/executor/token/index.ts)_
|
|
1643
1690
|
|
|
1644
1691
|
## `hereya workspace executor uninstall`
|
|
1645
1692
|
|
|
@@ -1647,17 +1694,20 @@ Uninstall the remote executor from a workspace
|
|
|
1647
1694
|
|
|
1648
1695
|
```
|
|
1649
1696
|
USAGE
|
|
1650
|
-
$ hereya workspace executor uninstall -w <value> [--debug]
|
|
1697
|
+
$ hereya workspace executor uninstall -w <value> [--debug] [--token <value>]
|
|
1651
1698
|
|
|
1652
1699
|
FLAGS
|
|
1653
1700
|
-w, --workspace=<value> (required) name of the workspace
|
|
1654
1701
|
--debug enable debug mode
|
|
1702
|
+
--token=<value> Ephemeral cloud access token used for this invocation only. Held in memory; never written to
|
|
1703
|
+
the keychain or `~/.hereya/secrets/`. Takes precedence over the HEREYA_TOKEN environment
|
|
1704
|
+
variable.
|
|
1655
1705
|
|
|
1656
1706
|
DESCRIPTION
|
|
1657
1707
|
Uninstall the remote executor from a workspace
|
|
1658
1708
|
```
|
|
1659
1709
|
|
|
1660
|
-
_See code: [src/commands/workspace/executor/uninstall/index.ts](https://github.com/hereya/hereya-cli/blob/v0.
|
|
1710
|
+
_See code: [src/commands/workspace/executor/uninstall/index.ts](https://github.com/hereya/hereya-cli/blob/v0.86.0/src/commands/workspace/executor/uninstall/index.ts)_
|
|
1661
1711
|
|
|
1662
1712
|
## `hereya workspace install PACKAGE`
|
|
1663
1713
|
|
|
@@ -1684,7 +1734,7 @@ EXAMPLES
|
|
|
1684
1734
|
$ hereya workspace install hereya/aws-cognito
|
|
1685
1735
|
```
|
|
1686
1736
|
|
|
1687
|
-
_See code: [src/commands/workspace/install/index.ts](https://github.com/hereya/hereya-cli/blob/v0.
|
|
1737
|
+
_See code: [src/commands/workspace/install/index.ts](https://github.com/hereya/hereya-cli/blob/v0.86.0/src/commands/workspace/install/index.ts)_
|
|
1688
1738
|
|
|
1689
1739
|
## `hereya workspace list`
|
|
1690
1740
|
|
|
@@ -1708,7 +1758,7 @@ EXAMPLES
|
|
|
1708
1758
|
$ hereya workspace list --org personal
|
|
1709
1759
|
```
|
|
1710
1760
|
|
|
1711
|
-
_See code: [src/commands/workspace/list/index.ts](https://github.com/hereya/hereya-cli/blob/v0.
|
|
1761
|
+
_See code: [src/commands/workspace/list/index.ts](https://github.com/hereya/hereya-cli/blob/v0.86.0/src/commands/workspace/list/index.ts)_
|
|
1712
1762
|
|
|
1713
1763
|
## `hereya workspace set-profile PROFILE`
|
|
1714
1764
|
|
|
@@ -1732,7 +1782,7 @@ EXAMPLES
|
|
|
1732
1782
|
$ hereya workspace set-profile prod-profile -w production
|
|
1733
1783
|
```
|
|
1734
1784
|
|
|
1735
|
-
_See code: [src/commands/workspace/set-profile/index.ts](https://github.com/hereya/hereya-cli/blob/v0.
|
|
1785
|
+
_See code: [src/commands/workspace/set-profile/index.ts](https://github.com/hereya/hereya-cli/blob/v0.86.0/src/commands/workspace/set-profile/index.ts)_
|
|
1736
1786
|
|
|
1737
1787
|
## `hereya workspace uninstall PACKAGE`
|
|
1738
1788
|
|
|
@@ -1759,5 +1809,5 @@ EXAMPLES
|
|
|
1759
1809
|
$ hereya workspace uninstall hereya/aws-cognito
|
|
1760
1810
|
```
|
|
1761
1811
|
|
|
1762
|
-
_See code: [src/commands/workspace/uninstall/index.ts](https://github.com/hereya/hereya-cli/blob/v0.
|
|
1812
|
+
_See code: [src/commands/workspace/uninstall/index.ts](https://github.com/hereya/hereya-cli/blob/v0.86.0/src/commands/workspace/uninstall/index.ts)_
|
|
1763
1813
|
<!-- commandsstop -->
|