apify-cli
apify-cli copied to clipboard
Apify command-line interface helps you create, develop, build and run Apify actors, and manage the Apify cloud platform.
As discussed with @mhamas, I'd like to introduce [`Actor.charge()`](https://github.com/apify/apify-sdk-js/pull/346) equivalent to the Apify CLI `actor` namespace. It should work locally (without the run id an the run API key) as...
We're missing CLI implementation Actor Whitepaper specified: - [`exit `](https://whitepaper.actor/#exit-actor), the CLI equivalent of JS SDK [`exit`](https://docs.apify.com/sdk/js/reference/class/Actor#exit) - [`set-status-message `](https://whitepaper.actor/#actor-status), the CLI equivalent of the JS SDK [`setStatusMessage`](https://docs.apify.com/sdk/js/reference/class/Actor#setStatusMessage)
We should really automate this in the release flow hah _Originally posted by @vladfrangu in https://github.com/apify/apify-cli/pull/737#issuecomment-2636347512_
Closes #590 BREAKING CHANGE: Purging in projects using Crawlee for SDK v3+ now purge by default, so using `--purge` flag is no longer necessary. Use `--no-purge` to keep the storage...
The end-game is to install `$ apify` CLI in any `Dockerfile` with a one-liner: ``` RUN curl -o- https://raw.githubusercontent.com/apify/apify-cli/latest/install.sh | bash ``` Installable from [https://github.com/netmilk/apify-cli/releases/tag/experimental](https://github.com/netmilk/apify-cli/releases/tag/experimental) with: ```shell #!/bin/bash echo "Installing...
- The `environmentVariables` field of the request body of https://docs.apify.com/api/v2/act-versions-post#request could be used for this. - Motivation is being able to pass build args to the Dockerfile without touching the...
When pushing an Actor, the Console doesn't show correct fields like `title` and `description`. See this `actor.json`: ```json { "actorSpecification": 1, "name": "diff-pdf", "title": "Diff PDF Title", "description": "An Actor...
When `apify push` is launched from `.actor`, the Actor `name` is always `undefined`. @janbuchar believes it's because push looks for `./actor/actor.json`, but finds nothing and hence the `name` is `undefined`....
It was mentioned in https://github.com/apify/apify-cli/issues/702#issuecomment-2485449949 and I basically ran into the same today. wanted to use `apify-cli` for one-time `apify run` under specific user without a need to do extra...
Not sure if this is a big issue, but I've just updated the Apify CLI and get the following warnings. ``` npm warn deprecated [email protected]: This module is not supported,...