Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Quickstart

5 minutes to your first Fungi pipeline.

1. Install

git clone https://github.com/yourusername/fungi.git
cd fungi
cargo build --release
ln -sf $(pwd)/target/release/fungi ~/.local/bin/
ln -sf $(pwd)/target/release/fungi-server ~/.local/bin/

See Deployment / Local for full install options.

2. Start Server

fungi server
🍄 Fungi server started on 0.0.0.0:50051

3. Run SQL

fungi sql --query "SELECT 1 as id, 'Alice' as name"
id | name
---+------
1  | Alice

4. Run a Pipeline

fungi pipeline sample --output my-pipeline.yaml
fungi pipeline run --config my-pipeline.yaml

See Guides / Pipelines for full config reference.

Local Mode (no server)

fungi sql --query "SELECT 1" --local

Next Steps