@crawlee-cloud/cli
v0.1.6
Published
CLI for Crawlee Cloud - run and deploy Actors
Readme
Crawlee Cloud CLI
The official CLI tool for Crawlee Cloud.
Manage your Crawlee Cloud resources, deploy Actors, and view logs directly from your terminal.
Installation
npm install -g @crawlee-cloud/cliOr use directly with npx:
npx @crawlee-cloud/cli <command>Usage
crawlee-cloud <command> [options]
# Alias
crc <command> [options]Commands
login- Login to your Crawlee Cloud accountpush- Deploy an Actor to the cloudrun- Start an Actor runcall- Run an Actor and wait for it to finishlogs- Stream logs from a running Actor
Example
# Login
crc login
# Push the current directory as an Actor
crc push my-actor
# Run the Actor
crc call my-actorConfiguration
Connect to your self-hosted Crawlee Cloud server:
# Login to your server
crc login --url https://your-server.comYou'll be prompted for your API token. Credentials are stored in ~/.crawlee-cloud/config.json.
Environment Variables
| Variable | Description |
| ----------------------- | --------------------- |
| CRAWLEE_CLOUD_API_URL | Override API base URL |
| CRAWLEE_CLOUD_TOKEN | Override API token |
Documentation
For full documentation, visit the Crawlee Cloud Documentation.
