fabro/docs/getting-started/quick-start.mdx
Bryan Helmkamp 5538ae4cd7 update docs: remove preview warning, update sandboxes, mark preview integrations
- Remove private research preview warning from quick-start page
- Update sandboxes section on how-fabro-works to list all 6 providers
- Mark exe.dev and Sprites as (preview) in sidebar nav titles

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-12 18:46:08 -04:00

57 lines
1.2 KiB
Text

---
title: "Quick Start"
description: "Get up and running with Fabro"
---
<Note>
Fabro has two modes:
- **Standalone mode** — Run workflows directly from the CLI. This is what the quick start covers below.
- **Server mode** — An API server with a web UI for launching and managing workflow runs at scale. See [Server Mode](/core-concepts/server-mode) for details.
</Note>
## Install
```bash
curl -fsSL https://fabro.sh/install.sh | bash
```
## Initialize your project
```bash
cd my-repo/
fabro init
```
This creates a default workflow and configuration in your project directory.
## Configure API keys
Add at least one LLM provider key:
```bash
ANTHROPIC_API_KEY=sk-ant-...
OPENAI_API_KEY=sk-...
GEMINI_API_KEY=AI...
```
<Note>
You only need one provider key to get started. Add more to enable multi-model workflows.
</Note>
## Run your first workflow
```bash
fabro run hello
```
## Next steps
<Columns cols={2}>
<Card title="Why Fabro?" icon="lightbulb" href="/getting-started/why-fabro">
Understand the problems Fabro solves.
</Card>
<Card title="Workflows" icon="diagram-project" href="/core-concepts/workflows">
Learn how to define workflow graphs in DOT.
</Card>
</Columns>