Skip to content

Commit 8fd3770

Browse files
authored
Fix failing test due to platform (#243)
1 parent b849d0a commit 8fd3770

5 files changed

Lines changed: 953 additions & 7819 deletions

File tree

README.md

Lines changed: 35 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ This section contains printouts of `apify help` for all commands.
248248
* [`apify secrets:rm NAME`](#apify-secretsrm-name)
249249
* [`apify vis [PATH]`](#apify-vis-path)
250250

251-
### `apify call [ACTID]`
251+
## `apify call [ACTID]`
252252

253253
Runs a specific actor remotely on the Apify cloud platform.
254254

@@ -267,13 +267,13 @@ OPTIONS
267267
-w, --wait-for-finish=wait-for-finish Seconds for waiting to run to finish, if no value passed, it waits forever.
268268
269269
DESCRIPTION
270-
The actor is run under your current Apify account, therefore you need to be logged in by calling "apify login". It
270+
The actor is run under your current Apify account, therefore you need to be logged in by calling "apify login". It
271271
takes input for the actor from the default local key-value store by default.
272272
```
273273

274-
_See code: [src/commands/call.js](https://github.com/apify/apify-cli/blob/v0.6.1/src/commands/call.js)_
274+
_See code: [src/commands/call.js](https://github.com/apify/apify-cli/blob/v0.6.2/src/commands/call.js)_
275275

276-
### `apify create [ACTORNAME]`
276+
## `apify create [ACTORNAME]`
277277

278278
Creates a new actor project directory from a selected boilerplate template.
279279

@@ -286,13 +286,13 @@ ARGUMENTS
286286
287287
OPTIONS
288288
-t, --template=template Template for the actor. If not provided, the command will prompt for it.Visit
289-
https://github.com/apify/actor-templates/raw/master/templates/manifest.json to find
289+
https://github.com/apifytech/actor-templates/raw/master/templates/manifest.json to find
290290
available template names.
291291
```
292292

293-
_See code: [src/commands/create.js](https://github.com/apify/apify-cli/blob/v0.6.1/src/commands/create.js)_
293+
_See code: [src/commands/create.js](https://github.com/apify/apify-cli/blob/v0.6.2/src/commands/create.js)_
294294

295-
### `apify info`
295+
## `apify info`
296296

297297
Displays information about the currently active Apify account.
298298

@@ -304,9 +304,9 @@ DESCRIPTION
304304
The information is printed to the console.
305305
```
306306

307-
_See code: [src/commands/info.js](https://github.com/apify/apify-cli/blob/v0.6.1/src/commands/info.js)_
307+
_See code: [src/commands/info.js](https://github.com/apify/apify-cli/blob/v0.6.2/src/commands/info.js)_
308308

309-
### `apify init [ACTORNAME]`
309+
## `apify init [ACTORNAME]`
310310

311311
Initializes a new actor project in an existing directory.
312312

@@ -318,15 +318,15 @@ ARGUMENTS
318318
ACTORNAME Name of the actor. If not provided, you will be prompted for it.
319319
320320
DESCRIPTION
321-
The command only creates the "apify.json" file and the "apify_storage" directory in the current directory, but will
321+
The command only creates the "apify.json" file and the "apify_storage" directory in the current directory, but will
322322
not touch anything else.
323323
324324
WARNING: The directory at "apify_storage" will be overwritten if it already exists.
325325
```
326326

327-
_See code: [src/commands/init.js](https://github.com/apify/apify-cli/blob/v0.6.1/src/commands/init.js)_
327+
_See code: [src/commands/init.js](https://github.com/apify/apify-cli/blob/v0.6.2/src/commands/init.js)_
328328

329-
### `apify login`
329+
## `apify login`
330330

331331
Logs in to your Apify account using a provided API token.
332332

@@ -338,13 +338,13 @@ OPTIONS
338338
-t, --token=token [Optional] Apify API token
339339
340340
DESCRIPTION
341-
The API token and other account information is stored in the ~/.apify directory, from where it is read by all other
341+
The API token and other account information is stored in the ~/.apify directory, from where it is read by all other
342342
"apify" commands. To log out, call "apify logout".
343343
```
344344

345-
_See code: [src/commands/login.js](https://github.com/apify/apify-cli/blob/v0.6.1/src/commands/login.js)_
345+
_See code: [src/commands/login.js](https://github.com/apify/apify-cli/blob/v0.6.2/src/commands/login.js)_
346346

347-
### `apify logout`
347+
## `apify logout`
348348

349349
Logs out of your Apify account.
350350

@@ -353,13 +353,13 @@ USAGE
353353
$ apify logout
354354
355355
DESCRIPTION
356-
The command deletes the API token and all other account information stored in the ~/.apify directory. To log in again,
356+
The command deletes the API token and all other account information stored in the ~/.apify directory. To log in again,
357357
call "apify login".
358358
```
359359

360-
_See code: [src/commands/logout.js](https://github.com/apify/apify-cli/blob/v0.6.1/src/commands/logout.js)_
360+
_See code: [src/commands/logout.js](https://github.com/apify/apify-cli/blob/v0.6.2/src/commands/logout.js)_
361361

362-
### `apify push [ACTORID]`
362+
## `apify push [ACTORID]`
363363

364364
Uploads the actor to the Apify platform and builds it there.
365365

@@ -384,17 +384,17 @@ OPTIONS
384384
should be pushed. By default, it is taken from the "apify.json" file.
385385
386386
DESCRIPTION
387-
The actor settings are read from the "apify.json" file in the current directory, but they can be overridden using
387+
The actor settings are read from the "apify.json" file in the current directory, but they can be overridden using
388388
command-line options.
389-
NOTE: If the source files are smaller than 3 MB then they are uploaded as
389+
NOTE: If the source files are smaller than 3 MB then they are uploaded as
390390
"Multiple source files", otherwise they are uploaded as "Zip file".
391391
392392
WARNING: If the target actor already exists in your Apify account, it will be overwritten!
393393
```
394394

395-
_See code: [src/commands/push.js](https://github.com/apify/apify-cli/blob/v0.6.1/src/commands/push.js)_
395+
_See code: [src/commands/push.js](https://github.com/apify/apify-cli/blob/v0.6.2/src/commands/push.js)_
396396

397-
### `apify run`
397+
## `apify run`
398398

399399
Runs the actor locally in the current directory by executing "npm start".
400400

@@ -414,17 +414,17 @@ OPTIONS
414414
--purge-queue Deletes the local directory containing the default request queue before the run starts.
415415
416416
DESCRIPTION
417-
It sets various APIFY_XYZ environment variables in order to provide a working execution environment for the actor. For
418-
example, this causes the actor input, as well as all other data in key-value stores, datasets or request queues to be
417+
It sets various APIFY_XYZ environment variables in order to provide a working execution environment for the actor. For
418+
example, this causes the actor input, as well as all other data in key-value stores, datasets or request queues to be
419419
stored in the "apify_storage" directory, rather than on the Apify platform.
420420
421-
NOTE: You can override the default behaviour of command overriding npm start script value in a package.json file. You
421+
NOTE: You can override the default behaviour of command overriding npm start script value in a package.json file. You
422422
can set up your own main file or environment variables by changing it.
423423
```
424424

425-
_See code: [src/commands/run.js](https://github.com/apify/apify-cli/blob/v0.6.1/src/commands/run.js)_
425+
_See code: [src/commands/run.js](https://github.com/apify/apify-cli/blob/v0.6.2/src/commands/run.js)_
426426

427-
### `apify secrets`
427+
## `apify secrets`
428428

429429
Manages secret values for actor environment variables.
430430

@@ -444,13 +444,13 @@ DESCRIPTION
444444
"version": "0.1
445445
}
446446
447-
When the actor is pushed to Apify cloud, the "SECRET_ENV_VAR" and its value is stored as a secret environment variable
447+
When the actor is pushed to Apify cloud, the "SECRET_ENV_VAR" and its value is stored as a secret environment variable
448448
of the actor.
449449
```
450450

451-
_See code: [src/commands/secrets/index.js](https://github.com/apify/apify-cli/blob/v0.6.1/src/commands/secrets/index.js)_
451+
_See code: [src/commands/secrets/index.js](https://github.com/apify/apify-cli/blob/v0.6.2/src/commands/secrets/index.js)_
452452

453-
### `apify secrets:add NAME VALUE`
453+
## `apify secrets:add NAME VALUE`
454454

455455
Adds a new secret value.
456456

@@ -466,9 +466,9 @@ DESCRIPTION
466466
The secrets are stored to a file at ~/.apify
467467
```
468468

469-
_See code: [src/commands/secrets/add.js](https://github.com/apify/apify-cli/blob/v0.6.1/src/commands/secrets/add.js)_
469+
_See code: [src/commands/secrets/add.js](https://github.com/apify/apify-cli/blob/v0.6.2/src/commands/secrets/add.js)_
470470

471-
### `apify secrets:rm NAME`
471+
## `apify secrets:rm NAME`
472472

473473
Removes the secret.
474474

@@ -480,9 +480,9 @@ ARGUMENTS
480480
NAME Name of the secret
481481
```
482482

483-
_See code: [src/commands/secrets/rm.js](https://github.com/apify/apify-cli/blob/v0.6.1/src/commands/secrets/rm.js)_
483+
_See code: [src/commands/secrets/rm.js](https://github.com/apify/apify-cli/blob/v0.6.2/src/commands/secrets/rm.js)_
484484

485-
### `apify vis [PATH]`
485+
## `apify vis [PATH]`
486486

487487
Validates INPUT_SCHEMA.json file and prints errors found.
488488

@@ -494,5 +494,5 @@ ARGUMENTS
494494
PATH Optional path to your INPUT_SCHEMA.json file. If not provided ./INPUT_SCHEMA.json is used.
495495
```
496496

497-
_See code: [src/commands/vis.js](https://github.com/apify/apify-cli/blob/v0.6.1/src/commands/vis.js)_
497+
_See code: [src/commands/vis.js](https://github.com/apify/apify-cli/blob/v0.6.2/src/commands/vis.js)_
498498
<!-- commandsstop -->

0 commit comments

Comments
 (0)