vandelay start¶
Start the FastAPI server (and optionally a terminal chat session).
Typical workflow: Run
vandelayto open the TUI dashboard, then runvandelay startin a separate terminal to bring the server online. The TUI's Chat tab connects automatically once the server is running.
Usage¶
What It Does¶
- Loads configuration from
~/.vandelay/config.jsonand~/.vandelay/.env - Creates the agent (or team) with configured model, tools, and workspace
- Starts the FastAPI server (default:
0.0.0.0:8000) - Starts the scheduler engine (if cron jobs exist)
- Registers Telegram/WhatsApp webhooks (if enabled)
- Opens an interactive terminal chat session
Options¶
| Flag | Description |
|---|---|
--server, -s | Server only — no interactive terminal chat (for headless/daemon deployments) |
--watch, -w | Auto-restart on file changes (watches src, config, and workspace files) |
Environment Variables¶
| Variable | Effect |
|---|---|
VANDELAY_HOST | Override server bind address |
VANDELAY_PORT | Override server port |
VANDELAY_AUTO_ONBOARD=1 | Run headless onboarding automatically if no config exists (PaaS use) |