mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
50bebe1b8a
Reflect support for MariaDB in docs
16 lines
327 B
Markdown
16 lines
327 B
Markdown
# Start Workflows via CLI
|
|
|
|
Workflows cannot be only started by triggers, webhooks or manually via the
|
|
Editor. It is also possible to start them directly via the CLI.
|
|
|
|
Execute a saved workflow by its ID:
|
|
|
|
```bash
|
|
n8n execute --id <ID>
|
|
```
|
|
|
|
Execute a workflow from a workflow file:
|
|
```bash
|
|
n8n execute --file <WORKFLOW_FILE>
|
|
```
|