apify-cli 0.21.0-beta.13 → 0.21.0-beta.15
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 +87 -86
- package/dist/.tsbuildinfo +1 -1
- package/dist/commands/actors/call.d.ts +0 -1
- package/dist/commands/actors/call.d.ts.map +1 -1
- package/dist/commands/actors/call.js +16 -7
- package/dist/commands/actors/call.js.map +1 -1
- package/dist/commands/builds/create.d.ts +1 -1
- package/dist/commands/builds/create.d.ts.map +1 -1
- package/dist/commands/builds/create.js +9 -3
- package/dist/commands/builds/create.js.map +1 -1
- package/dist/commands/builds/ls.d.ts +3 -1
- package/dist/commands/builds/ls.d.ts.map +1 -1
- package/dist/commands/builds/ls.js +19 -7
- package/dist/commands/builds/ls.js.map +1 -1
- package/dist/commands/push.d.ts.map +1 -1
- package/dist/commands/push.js.map +1 -1
- package/dist/commands/runs/abort.d.ts.map +1 -1
- package/dist/commands/runs/abort.js +6 -4
- package/dist/commands/runs/abort.js.map +1 -1
- package/dist/commands/runs/info.js +1 -1
- package/dist/commands/runs/info.js.map +1 -1
- package/dist/commands/runs/log.js +2 -2
- package/dist/commands/runs/log.js.map +1 -1
- package/dist/commands/runs/ls.d.ts +3 -1
- package/dist/commands/runs/ls.d.ts.map +1 -1
- package/dist/commands/runs/ls.js +16 -7
- package/dist/commands/runs/ls.js.map +1 -1
- package/dist/commands/runs/resurrect.d.ts.map +1 -1
- package/dist/commands/runs/resurrect.js +4 -2
- package/dist/commands/runs/resurrect.js.map +1 -1
- package/dist/commands/task/run.d.ts +0 -1
- package/dist/commands/task/run.d.ts.map +1 -1
- package/dist/commands/task/run.js +15 -8
- package/dist/commands/task/run.js.map +1 -1
- package/dist/lib/commands/run-on-cloud.d.ts +0 -1
- package/dist/lib/commands/run-on-cloud.d.ts.map +1 -1
- package/dist/lib/commands/run-on-cloud.js +0 -5
- package/dist/lib/commands/run-on-cloud.js.map +1 -1
- package/dist/lib/version_check.d.ts +1 -1
- package/dist/lib/version_check.d.ts.map +1 -1
- package/dist/lib/version_check.js +6 -0
- package/dist/lib/version_check.js.map +1 -1
- package/dist/typechecking.tsbuildinfo +1 -1
- package/oclif.manifest.json +214 -245
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -288,15 +288,15 @@ This section contains printouts of `apify help` for all commands.
|
|
|
288
288
|
* [`apify actor push-data [ITEM]`](#apify-actor-push-data-item)
|
|
289
289
|
* [`apify actor set-value KEY [VALUE]`](#apify-actor-set-value-key-value)
|
|
290
290
|
* [`apify actors`](#apify-actors)
|
|
291
|
-
* [`apify actors build [
|
|
291
|
+
* [`apify actors build [ACTORID]`](#apify-actors-build-actorid)
|
|
292
292
|
* [`apify actors call [ACTORID]`](#apify-actors-call-actorid)
|
|
293
293
|
* [`apify actors pull [ACTORID]`](#apify-actors-pull-actorid)
|
|
294
294
|
* [`apify actors rm ACTORID`](#apify-actors-rm-actorid)
|
|
295
295
|
* [`apify builds`](#apify-builds)
|
|
296
|
-
* [`apify builds create [
|
|
296
|
+
* [`apify builds create [ACTORID]`](#apify-builds-create-actorid)
|
|
297
297
|
* [`apify builds info BUILDID`](#apify-builds-info-buildid)
|
|
298
298
|
* [`apify builds log BUILDID`](#apify-builds-log-buildid)
|
|
299
|
-
* [`apify builds ls`](#apify-builds-ls)
|
|
299
|
+
* [`apify builds ls [ACTORID]`](#apify-builds-ls-actorid)
|
|
300
300
|
* [`apify builds rm BUILDID`](#apify-builds-rm-buildid)
|
|
301
301
|
* [`apify call [ACTORID]`](#apify-call-actorid)
|
|
302
302
|
* [`apify create [ACTORNAME]`](#apify-create-actorname)
|
|
@@ -315,7 +315,7 @@ This section contains printouts of `apify help` for all commands.
|
|
|
315
315
|
* [`apify runs abort RUNID`](#apify-runs-abort-runid)
|
|
316
316
|
* [`apify runs info RUNID`](#apify-runs-info-runid)
|
|
317
317
|
* [`apify runs log RUNID`](#apify-runs-log-runid)
|
|
318
|
-
* [`apify runs ls`](#apify-runs-ls)
|
|
318
|
+
* [`apify runs ls [ACTORID]`](#apify-runs-ls-actorid)
|
|
319
319
|
* [`apify runs resurrect RUNID`](#apify-runs-resurrect-runid)
|
|
320
320
|
* [`apify runs rm RUNID`](#apify-runs-rm-runid)
|
|
321
321
|
* [`apify secrets`](#apify-secrets)
|
|
@@ -337,7 +337,7 @@ DESCRIPTION
|
|
|
337
337
|
Commands are designed to be used in Actor runs. All commands are in PoC state, do not use in production environments.
|
|
338
338
|
```
|
|
339
339
|
|
|
340
|
-
_See code: [src/commands/actor/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
340
|
+
_See code: [src/commands/actor/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.15/src/commands/actor/index.ts)_
|
|
341
341
|
|
|
342
342
|
## `apify actor get-input`
|
|
343
343
|
|
|
@@ -351,7 +351,7 @@ DESCRIPTION
|
|
|
351
351
|
Gets the Actor input value from the default key-value store associated with the Actor run.
|
|
352
352
|
```
|
|
353
353
|
|
|
354
|
-
_See code: [src/commands/actor/get-input.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
354
|
+
_See code: [src/commands/actor/get-input.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.15/src/commands/actor/get-input.ts)_
|
|
355
355
|
|
|
356
356
|
## `apify actor get-value KEY`
|
|
357
357
|
|
|
@@ -368,7 +368,7 @@ DESCRIPTION
|
|
|
368
368
|
Gets a value from the default key-value store associated with the Actor run.
|
|
369
369
|
```
|
|
370
370
|
|
|
371
|
-
_See code: [src/commands/actor/get-value.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
371
|
+
_See code: [src/commands/actor/get-value.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.15/src/commands/actor/get-value.ts)_
|
|
372
372
|
|
|
373
373
|
## `apify actor push-data [ITEM]`
|
|
374
374
|
|
|
@@ -390,7 +390,7 @@ DESCRIPTION
|
|
|
390
390
|
$ cat ./test.json | apify actor push-data
|
|
391
391
|
```
|
|
392
392
|
|
|
393
|
-
_See code: [src/commands/actor/push-data.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
393
|
+
_See code: [src/commands/actor/push-data.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.15/src/commands/actor/push-data.ts)_
|
|
394
394
|
|
|
395
395
|
## `apify actor set-value KEY [VALUE]`
|
|
396
396
|
|
|
@@ -419,7 +419,7 @@ DESCRIPTION
|
|
|
419
419
|
$ cat ./my-text-file.txt | apify actor set-value KEY --contentType text/plain
|
|
420
420
|
```
|
|
421
421
|
|
|
422
|
-
_See code: [src/commands/actor/set-value.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
422
|
+
_See code: [src/commands/actor/set-value.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.15/src/commands/actor/set-value.ts)_
|
|
423
423
|
|
|
424
424
|
## `apify actors`
|
|
425
425
|
|
|
@@ -433,18 +433,19 @@ DESCRIPTION
|
|
|
433
433
|
Commands are designed to be used with Actors.
|
|
434
434
|
```
|
|
435
435
|
|
|
436
|
-
_See code: [src/commands/actors/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
436
|
+
_See code: [src/commands/actors/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.15/src/commands/actors/index.ts)_
|
|
437
437
|
|
|
438
|
-
## `apify actors build [
|
|
438
|
+
## `apify actors build [ACTORID]`
|
|
439
439
|
|
|
440
440
|
Creates a new build of the Actor.
|
|
441
441
|
|
|
442
442
|
```
|
|
443
443
|
USAGE
|
|
444
|
-
$ apify actors build [
|
|
444
|
+
$ apify actors build [ACTORID] [--json] [--tag <value>] [--version <value>] [--log]
|
|
445
445
|
|
|
446
446
|
ARGUMENTS
|
|
447
|
-
|
|
447
|
+
ACTORID Optional Actor ID or Name to trigger a build for. By default, it will use the Actor from the current
|
|
448
|
+
directory.
|
|
448
449
|
|
|
449
450
|
FLAGS
|
|
450
451
|
--log Whether to print out the build log after the build is triggered.
|
|
@@ -459,7 +460,7 @@ DESCRIPTION
|
|
|
459
460
|
Creates a new build of the Actor.
|
|
460
461
|
```
|
|
461
462
|
|
|
462
|
-
_See code: [src/commands/actors/build.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
463
|
+
_See code: [src/commands/actors/build.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.15/src/commands/actors/build.ts)_
|
|
463
464
|
|
|
464
465
|
## `apify actors call [ACTORID]`
|
|
465
466
|
|
|
@@ -467,23 +468,22 @@ Runs a specific Actor remotely on the Apify cloud platform.
|
|
|
467
468
|
|
|
468
469
|
```
|
|
469
470
|
USAGE
|
|
470
|
-
$ apify actors call [ACTORID] [--json] [-b <value>] [-t <value>] [-m <value>] [-
|
|
471
|
-
|
|
471
|
+
$ apify actors call [ACTORID] [--json] [-b <value>] [-t <value>] [-m <value>] [-i <value> | --input-file
|
|
472
|
+
<value>] [-s] [-o]
|
|
472
473
|
|
|
473
474
|
ARGUMENTS
|
|
474
475
|
ACTORID Name or ID of the Actor to run (e.g. "my-actor", "apify/hello-world" or "E2jjCZBezvAZnX8Rb"). If not
|
|
475
476
|
provided, the command runs the remote Actor specified in the ".actor/actor.json" file.
|
|
476
477
|
|
|
477
478
|
FLAGS
|
|
478
|
-
-b, --build=<value>
|
|
479
|
-
-i, --input=<value>
|
|
480
|
-
-m, --memory=<value>
|
|
481
|
-
-o, --output-dataset
|
|
482
|
-
-s, --silent
|
|
483
|
-
-t, --timeout=<value>
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
valid JSON file. You can also specify `-` to read from standard input.
|
|
479
|
+
-b, --build=<value> Tag or number of the build to run (e.g. "latest" or "1.2.34").
|
|
480
|
+
-i, --input=<value> Optional JSON input to be given to the Actor.
|
|
481
|
+
-m, --memory=<value> Amount of memory allocated for the Actor run, in megabytes.
|
|
482
|
+
-o, --output-dataset Prints out the entire default dataset on successful run of the Actor.
|
|
483
|
+
-s, --silent Prevents printing the logs of the Actor run to the console.
|
|
484
|
+
-t, --timeout=<value> Timeout for the Actor run in seconds. Zero value means there is no timeout.
|
|
485
|
+
--input-file=<value> Optional path to a file with JSON input to be given to the Actor. The file must be a valid
|
|
486
|
+
JSON file. You can also specify `-` to read from standard input.
|
|
487
487
|
|
|
488
488
|
GLOBAL FLAGS
|
|
489
489
|
--json Format output as json.
|
|
@@ -494,7 +494,7 @@ DESCRIPTION
|
|
|
494
494
|
takes input for the Actor from the default local key-value store by default.
|
|
495
495
|
```
|
|
496
496
|
|
|
497
|
-
_See code: [src/commands/actors/call.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
497
|
+
_See code: [src/commands/actors/call.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.15/src/commands/actors/call.ts)_
|
|
498
498
|
|
|
499
499
|
## `apify actors pull [ACTORID]`
|
|
500
500
|
|
|
@@ -517,7 +517,7 @@ DESCRIPTION
|
|
|
517
517
|
cloned. If it is defined as Web IDE, it will fetch the files.
|
|
518
518
|
```
|
|
519
519
|
|
|
520
|
-
_See code: [src/commands/actors/pull.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
520
|
+
_See code: [src/commands/actors/pull.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.15/src/commands/actors/pull.ts)_
|
|
521
521
|
|
|
522
522
|
## `apify actors rm ACTORID`
|
|
523
523
|
|
|
@@ -534,7 +534,7 @@ DESCRIPTION
|
|
|
534
534
|
Deletes an Actor.
|
|
535
535
|
```
|
|
536
536
|
|
|
537
|
-
_See code: [src/commands/actors/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
537
|
+
_See code: [src/commands/actors/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.15/src/commands/actors/rm.ts)_
|
|
538
538
|
|
|
539
539
|
## `apify builds`
|
|
540
540
|
|
|
@@ -548,18 +548,19 @@ DESCRIPTION
|
|
|
548
548
|
Commands are designed to be used with Actor Builds.
|
|
549
549
|
```
|
|
550
550
|
|
|
551
|
-
_See code: [src/commands/builds/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
551
|
+
_See code: [src/commands/builds/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.15/src/commands/builds/index.ts)_
|
|
552
552
|
|
|
553
|
-
## `apify builds create [
|
|
553
|
+
## `apify builds create [ACTORID]`
|
|
554
554
|
|
|
555
555
|
Creates a new build of the Actor.
|
|
556
556
|
|
|
557
557
|
```
|
|
558
558
|
USAGE
|
|
559
|
-
$ apify builds create [
|
|
559
|
+
$ apify builds create [ACTORID] [--json] [--tag <value>] [--version <value>] [--log]
|
|
560
560
|
|
|
561
561
|
ARGUMENTS
|
|
562
|
-
|
|
562
|
+
ACTORID Optional Actor ID or Name to trigger a build for. By default, it will use the Actor from the current
|
|
563
|
+
directory.
|
|
563
564
|
|
|
564
565
|
FLAGS
|
|
565
566
|
--log Whether to print out the build log after the build is triggered.
|
|
@@ -574,7 +575,7 @@ DESCRIPTION
|
|
|
574
575
|
Creates a new build of the Actor.
|
|
575
576
|
```
|
|
576
577
|
|
|
577
|
-
_See code: [src/commands/builds/create.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
578
|
+
_See code: [src/commands/builds/create.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.15/src/commands/builds/create.ts)_
|
|
578
579
|
|
|
579
580
|
## `apify builds info BUILDID`
|
|
580
581
|
|
|
@@ -594,7 +595,7 @@ DESCRIPTION
|
|
|
594
595
|
Prints information about a specific build.
|
|
595
596
|
```
|
|
596
597
|
|
|
597
|
-
_See code: [src/commands/builds/info.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
598
|
+
_See code: [src/commands/builds/info.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.15/src/commands/builds/info.ts)_
|
|
598
599
|
|
|
599
600
|
## `apify builds log BUILDID`
|
|
600
601
|
|
|
@@ -611,20 +612,21 @@ DESCRIPTION
|
|
|
611
612
|
Prints the log of a specific build.
|
|
612
613
|
```
|
|
613
614
|
|
|
614
|
-
_See code: [src/commands/builds/log.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
615
|
+
_See code: [src/commands/builds/log.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.15/src/commands/builds/log.ts)_
|
|
615
616
|
|
|
616
|
-
## `apify builds ls`
|
|
617
|
+
## `apify builds ls [ACTORID]`
|
|
617
618
|
|
|
618
619
|
Lists all builds of the Actor.
|
|
619
620
|
|
|
620
621
|
```
|
|
621
622
|
USAGE
|
|
622
|
-
$ apify builds ls [
|
|
623
|
+
$ apify builds ls [ACTORID] [--json] [--offset <value>] [--limit <value>] [--desc] [-c]
|
|
624
|
+
|
|
625
|
+
ARGUMENTS
|
|
626
|
+
ACTORID Optional Actor ID or Name to list runs for. By default, it will use the Actor from the current directory.
|
|
623
627
|
|
|
624
628
|
FLAGS
|
|
625
629
|
-c, --compact Display a compact table.
|
|
626
|
-
--actor=<value> Optional Actor ID or Name to list builds for. By default, it will use the Actor from the current
|
|
627
|
-
directory.
|
|
628
630
|
--desc Sort builds in descending order.
|
|
629
631
|
--limit=<value> [default: 10] Number of builds that will be listed.
|
|
630
632
|
--offset=<value> Number of builds that will be skipped.
|
|
@@ -636,7 +638,7 @@ DESCRIPTION
|
|
|
636
638
|
Lists all builds of the Actor.
|
|
637
639
|
```
|
|
638
640
|
|
|
639
|
-
_See code: [src/commands/builds/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
641
|
+
_See code: [src/commands/builds/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.15/src/commands/builds/ls.ts)_
|
|
640
642
|
|
|
641
643
|
## `apify builds rm BUILDID`
|
|
642
644
|
|
|
@@ -653,7 +655,7 @@ DESCRIPTION
|
|
|
653
655
|
Deletes an Actor Build.
|
|
654
656
|
```
|
|
655
657
|
|
|
656
|
-
_See code: [src/commands/builds/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
658
|
+
_See code: [src/commands/builds/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.15/src/commands/builds/rm.ts)_
|
|
657
659
|
|
|
658
660
|
## `apify call [ACTORID]`
|
|
659
661
|
|
|
@@ -661,23 +663,22 @@ Runs a specific Actor remotely on the Apify cloud platform.
|
|
|
661
663
|
|
|
662
664
|
```
|
|
663
665
|
USAGE
|
|
664
|
-
$ apify call [ACTORID] [--json] [-b <value>] [-t <value>] [-m <value>] [-
|
|
665
|
-
|
|
666
|
+
$ apify call [ACTORID] [--json] [-b <value>] [-t <value>] [-m <value>] [-i <value> | --input-file
|
|
667
|
+
<value>] [-s] [-o]
|
|
666
668
|
|
|
667
669
|
ARGUMENTS
|
|
668
670
|
ACTORID Name or ID of the Actor to run (e.g. "my-actor", "apify/hello-world" or "E2jjCZBezvAZnX8Rb"). If not
|
|
669
671
|
provided, the command runs the remote Actor specified in the ".actor/actor.json" file.
|
|
670
672
|
|
|
671
673
|
FLAGS
|
|
672
|
-
-b, --build=<value>
|
|
673
|
-
-i, --input=<value>
|
|
674
|
-
-m, --memory=<value>
|
|
675
|
-
-o, --output-dataset
|
|
676
|
-
-s, --silent
|
|
677
|
-
-t, --timeout=<value>
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
valid JSON file. You can also specify `-` to read from standard input.
|
|
674
|
+
-b, --build=<value> Tag or number of the build to run (e.g. "latest" or "1.2.34").
|
|
675
|
+
-i, --input=<value> Optional JSON input to be given to the Actor.
|
|
676
|
+
-m, --memory=<value> Amount of memory allocated for the Actor run, in megabytes.
|
|
677
|
+
-o, --output-dataset Prints out the entire default dataset on successful run of the Actor.
|
|
678
|
+
-s, --silent Prevents printing the logs of the Actor run to the console.
|
|
679
|
+
-t, --timeout=<value> Timeout for the Actor run in seconds. Zero value means there is no timeout.
|
|
680
|
+
--input-file=<value> Optional path to a file with JSON input to be given to the Actor. The file must be a valid
|
|
681
|
+
JSON file. You can also specify `-` to read from standard input.
|
|
681
682
|
|
|
682
683
|
GLOBAL FLAGS
|
|
683
684
|
--json Format output as json.
|
|
@@ -688,7 +689,7 @@ DESCRIPTION
|
|
|
688
689
|
takes input for the Actor from the default local key-value store by default.
|
|
689
690
|
```
|
|
690
691
|
|
|
691
|
-
_See code: [src/commands/call.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
692
|
+
_See code: [src/commands/call.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.15/src/commands/call.ts)_
|
|
692
693
|
|
|
693
694
|
## `apify create [ACTORNAME]`
|
|
694
695
|
|
|
@@ -713,7 +714,7 @@ DESCRIPTION
|
|
|
713
714
|
Creates a new Actor project directory from a selected boilerplate template.
|
|
714
715
|
```
|
|
715
716
|
|
|
716
|
-
_See code: [src/commands/create.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
717
|
+
_See code: [src/commands/create.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.15/src/commands/create.ts)_
|
|
717
718
|
|
|
718
719
|
## `apify datasets`
|
|
719
720
|
|
|
@@ -727,7 +728,7 @@ DESCRIPTION
|
|
|
727
728
|
Commands are designed to be used with Datasets.
|
|
728
729
|
```
|
|
729
730
|
|
|
730
|
-
_See code: [src/commands/datasets/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
731
|
+
_See code: [src/commands/datasets/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.15/src/commands/datasets/index.ts)_
|
|
731
732
|
|
|
732
733
|
## `apify help [COMMAND]`
|
|
733
734
|
|
|
@@ -762,7 +763,7 @@ DESCRIPTION
|
|
|
762
763
|
The information is printed to the console.
|
|
763
764
|
```
|
|
764
765
|
|
|
765
|
-
_See code: [src/commands/info.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
766
|
+
_See code: [src/commands/info.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.15/src/commands/info.ts)_
|
|
766
767
|
|
|
767
768
|
## `apify init [ACTORNAME]`
|
|
768
769
|
|
|
@@ -790,7 +791,7 @@ DESCRIPTION
|
|
|
790
791
|
WARNING: The directory at "storage" will be overwritten if it already exists.
|
|
791
792
|
```
|
|
792
793
|
|
|
793
|
-
_See code: [src/commands/init.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
794
|
+
_See code: [src/commands/init.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.15/src/commands/init.ts)_
|
|
794
795
|
|
|
795
796
|
## `apify key-value-stores`
|
|
796
797
|
|
|
@@ -804,7 +805,7 @@ DESCRIPTION
|
|
|
804
805
|
Commands are designed to be used with Key Value Stores.
|
|
805
806
|
```
|
|
806
807
|
|
|
807
|
-
_See code: [src/commands/key-value-stores/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
808
|
+
_See code: [src/commands/key-value-stores/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.15/src/commands/key-value-stores/index.ts)_
|
|
808
809
|
|
|
809
810
|
## `apify login`
|
|
810
811
|
|
|
@@ -825,7 +826,7 @@ DESCRIPTION
|
|
|
825
826
|
"apify" commands. To log out, call "apify logout".
|
|
826
827
|
```
|
|
827
828
|
|
|
828
|
-
_See code: [src/commands/login.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
829
|
+
_See code: [src/commands/login.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.15/src/commands/login.ts)_
|
|
829
830
|
|
|
830
831
|
## `apify logout`
|
|
831
832
|
|
|
@@ -841,7 +842,7 @@ DESCRIPTION
|
|
|
841
842
|
call "apify login".
|
|
842
843
|
```
|
|
843
844
|
|
|
844
|
-
_See code: [src/commands/logout.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
845
|
+
_See code: [src/commands/logout.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.15/src/commands/logout.ts)_
|
|
845
846
|
|
|
846
847
|
## `apify pull [ACTORID]`
|
|
847
848
|
|
|
@@ -864,7 +865,7 @@ DESCRIPTION
|
|
|
864
865
|
cloned. If it is defined as Web IDE, it will fetch the files.
|
|
865
866
|
```
|
|
866
867
|
|
|
867
|
-
_See code: [src/commands/pull.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
868
|
+
_See code: [src/commands/pull.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.15/src/commands/pull.ts)_
|
|
868
869
|
|
|
869
870
|
## `apify push [ACTORID]`
|
|
870
871
|
|
|
@@ -902,7 +903,7 @@ DESCRIPTION
|
|
|
902
903
|
overwritten with --force flag.
|
|
903
904
|
```
|
|
904
905
|
|
|
905
|
-
_See code: [src/commands/push.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
906
|
+
_See code: [src/commands/push.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.15/src/commands/push.ts)_
|
|
906
907
|
|
|
907
908
|
## `apify request-queues`
|
|
908
909
|
|
|
@@ -916,7 +917,7 @@ DESCRIPTION
|
|
|
916
917
|
Commands are designed to be used with Request Queues.
|
|
917
918
|
```
|
|
918
919
|
|
|
919
|
-
_See code: [src/commands/request-queues/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
920
|
+
_See code: [src/commands/request-queues/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.15/src/commands/request-queues/index.ts)_
|
|
920
921
|
|
|
921
922
|
## `apify run`
|
|
922
923
|
|
|
@@ -952,7 +953,7 @@ DESCRIPTION
|
|
|
952
953
|
package.json file. You can set up your own main file or environment variables by changing it.
|
|
953
954
|
```
|
|
954
955
|
|
|
955
|
-
_See code: [src/commands/run.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
956
|
+
_See code: [src/commands/run.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.15/src/commands/run.ts)_
|
|
956
957
|
|
|
957
958
|
## `apify runs`
|
|
958
959
|
|
|
@@ -966,7 +967,7 @@ DESCRIPTION
|
|
|
966
967
|
Commands are designed to be used with Actor Runs.
|
|
967
968
|
```
|
|
968
969
|
|
|
969
|
-
_See code: [src/commands/runs/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
970
|
+
_See code: [src/commands/runs/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.15/src/commands/runs/index.ts)_
|
|
970
971
|
|
|
971
972
|
## `apify runs abort RUNID`
|
|
972
973
|
|
|
@@ -989,7 +990,7 @@ DESCRIPTION
|
|
|
989
990
|
Aborts an Actor Run.
|
|
990
991
|
```
|
|
991
992
|
|
|
992
|
-
_See code: [src/commands/runs/abort.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
993
|
+
_See code: [src/commands/runs/abort.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.15/src/commands/runs/abort.ts)_
|
|
993
994
|
|
|
994
995
|
## `apify runs info RUNID`
|
|
995
996
|
|
|
@@ -1012,7 +1013,7 @@ DESCRIPTION
|
|
|
1012
1013
|
Prints information about an Actor Run.
|
|
1013
1014
|
```
|
|
1014
1015
|
|
|
1015
|
-
_See code: [src/commands/runs/info.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1016
|
+
_See code: [src/commands/runs/info.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.15/src/commands/runs/info.ts)_
|
|
1016
1017
|
|
|
1017
1018
|
## `apify runs log RUNID`
|
|
1018
1019
|
|
|
@@ -1029,20 +1030,21 @@ DESCRIPTION
|
|
|
1029
1030
|
Prints the log of a specific run.
|
|
1030
1031
|
```
|
|
1031
1032
|
|
|
1032
|
-
_See code: [src/commands/runs/log.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1033
|
+
_See code: [src/commands/runs/log.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.15/src/commands/runs/log.ts)_
|
|
1033
1034
|
|
|
1034
|
-
## `apify runs ls`
|
|
1035
|
+
## `apify runs ls [ACTORID]`
|
|
1035
1036
|
|
|
1036
1037
|
Lists all runs of the Actor.
|
|
1037
1038
|
|
|
1038
1039
|
```
|
|
1039
1040
|
USAGE
|
|
1040
|
-
$ apify runs ls [
|
|
1041
|
+
$ apify runs ls [ACTORID] [--json] [--offset <value>] [--limit <value>] [--desc] [-c]
|
|
1042
|
+
|
|
1043
|
+
ARGUMENTS
|
|
1044
|
+
ACTORID Optional Actor ID or Name to list runs for. By default, it will use the Actor from the current directory.
|
|
1041
1045
|
|
|
1042
1046
|
FLAGS
|
|
1043
1047
|
-c, --compact Display a compact table.
|
|
1044
|
-
--actor=<value> Optional Actor ID or Name to list runs for. By default, it will use the Actor from the current
|
|
1045
|
-
directory.
|
|
1046
1048
|
--desc Sort runs in descending order.
|
|
1047
1049
|
--limit=<value> [default: 10] Number of runs that will be listed.
|
|
1048
1050
|
--offset=<value> Number of runs that will be skipped.
|
|
@@ -1054,7 +1056,7 @@ DESCRIPTION
|
|
|
1054
1056
|
Lists all runs of the Actor.
|
|
1055
1057
|
```
|
|
1056
1058
|
|
|
1057
|
-
_See code: [src/commands/runs/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1059
|
+
_See code: [src/commands/runs/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.15/src/commands/runs/ls.ts)_
|
|
1058
1060
|
|
|
1059
1061
|
## `apify runs resurrect RUNID`
|
|
1060
1062
|
|
|
@@ -1074,7 +1076,7 @@ DESCRIPTION
|
|
|
1074
1076
|
Resurrects an aborted or finished Actor Run.
|
|
1075
1077
|
```
|
|
1076
1078
|
|
|
1077
|
-
_See code: [src/commands/runs/resurrect.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1079
|
+
_See code: [src/commands/runs/resurrect.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.15/src/commands/runs/resurrect.ts)_
|
|
1078
1080
|
|
|
1079
1081
|
## `apify runs rm RUNID`
|
|
1080
1082
|
|
|
@@ -1091,7 +1093,7 @@ DESCRIPTION
|
|
|
1091
1093
|
Deletes an Actor Run.
|
|
1092
1094
|
```
|
|
1093
1095
|
|
|
1094
|
-
_See code: [src/commands/runs/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1096
|
+
_See code: [src/commands/runs/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.15/src/commands/runs/rm.ts)_
|
|
1095
1097
|
|
|
1096
1098
|
## `apify secrets`
|
|
1097
1099
|
|
|
@@ -1121,7 +1123,7 @@ DESCRIPTION
|
|
|
1121
1123
|
of the Actor.
|
|
1122
1124
|
```
|
|
1123
1125
|
|
|
1124
|
-
_See code: [src/commands/secrets/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1126
|
+
_See code: [src/commands/secrets/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.15/src/commands/secrets/index.ts)_
|
|
1125
1127
|
|
|
1126
1128
|
## `apify secrets add NAME VALUE`
|
|
1127
1129
|
|
|
@@ -1140,7 +1142,7 @@ DESCRIPTION
|
|
|
1140
1142
|
The secrets are stored to a file at ~/.apify
|
|
1141
1143
|
```
|
|
1142
1144
|
|
|
1143
|
-
_See code: [src/commands/secrets/add.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1145
|
+
_See code: [src/commands/secrets/add.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.15/src/commands/secrets/add.ts)_
|
|
1144
1146
|
|
|
1145
1147
|
## `apify secrets rm NAME`
|
|
1146
1148
|
|
|
@@ -1157,7 +1159,7 @@ DESCRIPTION
|
|
|
1157
1159
|
Removes the secret.
|
|
1158
1160
|
```
|
|
1159
1161
|
|
|
1160
|
-
_See code: [src/commands/secrets/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1162
|
+
_See code: [src/commands/secrets/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.15/src/commands/secrets/rm.ts)_
|
|
1161
1163
|
|
|
1162
1164
|
## `apify task`
|
|
1163
1165
|
|
|
@@ -1171,7 +1173,7 @@ DESCRIPTION
|
|
|
1171
1173
|
Commands are designed to be used to interact with Tasks.
|
|
1172
1174
|
```
|
|
1173
1175
|
|
|
1174
|
-
_See code: [src/commands/task/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1176
|
+
_See code: [src/commands/task/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.15/src/commands/task/index.ts)_
|
|
1175
1177
|
|
|
1176
1178
|
## `apify task run TASKID`
|
|
1177
1179
|
|
|
@@ -1179,16 +1181,15 @@ Runs a specific Actor remotely on the Apify cloud platform.
|
|
|
1179
1181
|
|
|
1180
1182
|
```
|
|
1181
1183
|
USAGE
|
|
1182
|
-
$ apify task run TASKID [-b <value>] [-t <value>] [-m <value>]
|
|
1184
|
+
$ apify task run TASKID [-b <value>] [-t <value>] [-m <value>]
|
|
1183
1185
|
|
|
1184
1186
|
ARGUMENTS
|
|
1185
1187
|
TASKID Name or ID of the Task to run (e.g. "my-task" or "E2jjCZBezvAZnX8Rb").
|
|
1186
1188
|
|
|
1187
1189
|
FLAGS
|
|
1188
|
-
-b, --build=<value>
|
|
1189
|
-
-m, --memory=<value>
|
|
1190
|
-
-t, --timeout=<value>
|
|
1191
|
-
-w, --wait-for-finish=<value> Seconds for waiting to run to finish, if no value passed, it waits forever.
|
|
1190
|
+
-b, --build=<value> Tag or number of the build to run (e.g. "latest" or "1.2.34").
|
|
1191
|
+
-m, --memory=<value> Amount of memory allocated for the Task run, in megabytes.
|
|
1192
|
+
-t, --timeout=<value> Timeout for the Task run in seconds. Zero value means there is no timeout.
|
|
1192
1193
|
|
|
1193
1194
|
DESCRIPTION
|
|
1194
1195
|
Runs a specific Actor remotely on the Apify cloud platform.
|
|
@@ -1196,7 +1197,7 @@ DESCRIPTION
|
|
|
1196
1197
|
takes input for the Actor from the default local key-value store by default.
|
|
1197
1198
|
```
|
|
1198
1199
|
|
|
1199
|
-
_See code: [src/commands/task/run.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1200
|
+
_See code: [src/commands/task/run.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.15/src/commands/task/run.ts)_
|
|
1200
1201
|
|
|
1201
1202
|
## `apify validate-schema [PATH]`
|
|
1202
1203
|
|
|
@@ -1221,6 +1222,6 @@ DESCRIPTION
|
|
|
1221
1222
|
You can also pass any custom path to your input schema to have it validated instead.
|
|
1222
1223
|
```
|
|
1223
1224
|
|
|
1224
|
-
_See code: [src/commands/validate-schema.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1225
|
+
_See code: [src/commands/validate-schema.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.15/src/commands/validate-schema.ts)_
|
|
1225
1226
|
<!-- commandsstop -->
|
|
1226
1227
|
<!-- prettier-ignore-end -->
|