> ## Documentation Index
> Fetch the complete documentation index at: https://docs.scallion.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Quick Start

> Get started with scallion in under 10 minutes.

## Installation

You can install `scallion` via pip:

```bash theme={null}
pip install scallion
```

## Running Scallion

Run scallion by providing the broker URL and app name

```bash theme={null}
celery --broker=redis://:password@redis:6379/0 -A test-app scallion
```

By default, scallion runs on port 5555. You can modify the port scallion runs out with the `--port` option:

```bash theme={null}
celery -A test-app scallion --port=5001
```

You can also run scallion via docker:

```bash theme={null}
docker run -v local:/data -p 5555:5555 umoh1/scallion celery --app=test-app scallion
```
