This is the fastest way to get a local Tale instance running on your laptop. Use this quickstart to evaluate the product, run a demo, or develop against the platform. For a public-facing instance with TLS and zero-downtime upgrades, follow the production deployment guide instead.Documentation Index
Fetch the complete documentation index at: https://docs.tale.dev/llms.txt
Use this file to discover all available pages before exploring further.
Prerequisites
| Software | Minimum version | Where to get it |
|---|---|---|
| Docker Desktop | 24.0+ | https://www.docker.com/products/docker-desktop |
Get an API key
Tale uses OpenRouter as its default AI gateway, which gives you access to hundreds of models through a single API key. Create a free account at https://openrouter.ai, generate a new API key from the Keys section of your account dashboard, and copy it so you can paste it during setup.Tip: Any OpenAI-compatible provider works, including a local Ollama instance. OpenRouter is the recommended default for its model variety and simple pricing.
Setup
Step 1: Install the CLI
Linux / macOS:Pin a specific version: Both installers honor aOr download the binary directly — replaceVERSIONenvironment variable. RunVERSION=0.9.0 curl -fsSL …/install-cli.sh | bashon Linux/macOS, or$env:VERSION = '0.9.0'; irm …/install-cli.ps1 | iexon Windows. Available tags are on the GitHub Releases page.
latest with a tag (e.g. v0.9.0) to pin:
Step 2: Create a project
BETTER_AUTH_SECRET, ENCRYPTION_SECRET_HEX) are generated automatically.
Tip:tale initalso drops configuration files for AI-powered editors (Claude Code, Cursor, GitHub Copilot, Windsurf) and extracts the platform source to.tale/reference/. Open the project in any of these editors to create and edit agents, workflows, and integrations in natural language. See AI-assisted development.
Step 3: Start Tale
Tale Dev v0.x.x Ready. Health-check messages while services boot are normal — wait for the Ready line before opening your browser.
Step 4: Open the app
Go to https://localhost (or your configured domain). The first visit takes you to a sign-up page to create your admin account.Self-signed certificate warning. The defaultselfsignedTLS mode generates a local certificate, so your browser will show a “Your connection is not private” warning the first time. Click through (Chrome: Advanced → Proceed, Firefox: Advanced → Accept the Risk). For a public deployment, chooseletsencryptduringtale initor follow the production deployment guide.
Daily workflow
Start and stop
-p tale-dev flag is required because tale start uses that compose project name rather than a standard docker-compose.yml.
Upgrade
Inspect backend data
/convex-dashboard in your browser and paste the key to inspect the database, view function logs, and manage background jobs.
Alternative: build from source
If you want to contribute to Tale or customize the platform, run from source instead of pulling pre-built images..env and replace the example values:
| Variable | How to fill it in |
|---|---|
BETTER_AUTH_SECRET | openssl rand -base64 32 |
ENCRYPTION_SECRET_HEX | openssl rand -hex 32 |
DB_PASSWORD | Any password for the local database |
Important: .env.example ships with placeholder secrets that must be replaced before starting.
Then build and start:
bun run docker:test to smoke-test the build. See the Contributing Docker guide for image validation and vulnerability scan scripts.