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
- Guides / Pipelines — build a real pipeline
- Guides / Kafka — stream from Kafka
- Guides / Python UDF — custom Python logic
- Operations / Dashboard — monitor visually