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

# seed:run

> Run seeds for all modules.

Run seeds for every module that defines a `bin/seed/run.ts` script. Each module's seed script is run from its own directory. With `--drop`, seeded data is cleared first, and `--env` sets the `APP_ENV` used for the run.

## Usage

```bash theme={null}
ooneex seed:run [options]
```

## Examples

```bash theme={null}
ooneex seed:run
```

```bash theme={null}
ooneex seed:run --drop --env=test
```

## Options

| Option   | Description                                      | Default |
| -------- | ------------------------------------------------ | ------- |
| `--drop` | Clear seeded data before running seeds.          | `false` |
| `--env`  | Value used for `APP_ENV` when running the seeds. | —       |
