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