Get Laddr installed and configured on your system.Documentation Index
Fetch the complete documentation index at: https://laddr.agnetlabs.com/llms.txt
Use this file to discover all available pages before exploring further.
Prerequisites
- Python 3.9+ - Required for Laddr
- pip - Python package manager
- Docker (optional but recommended) - For full stack with dashboard
- Node.js (optional) - For MCP servers
Python Virtual Environment
Create a virtual environment to isolate dependencies:Install Laddr
Standard Installation
- Laddr CLI
- Core framework
- API server
- Worker runtime
Development Installation
To develop against the Laddr repository:Verify Installation
Docker Setup
For the full experience including the web UI and isolated environments, install Docker:- Download from Docker Desktop
- Install and start Docker
- Verify installation:
Create a New Project
Initialize a new Laddr project:Configure Environment
Copy the example environment file:.env with your configuration:
Run the Stack
Option 1: Local Development (No Docker)
For quick testing without Docker:Option 2: Full Stack (Docker)
Start all services with Docker:- PostgreSQL - Database (port 5432)
- Redis - Message queue (port 6379)
- MinIO - Object storage (port 9000)
- API Server - REST API (port 8000)
- Dashboard - Web UI (port 5173)
- Workers - Agent workers
http://localhost:5173
Verify Installation
Check Services
Run Diagnostics
- Database connectivity
- Queue backend connection
- Storage backend access
- LLM API connectivity
- Agent configuration
Test with a Simple Agent
Troubleshooting
Command Not Found
Ifladdr command is not found:
Docker Issues
If Docker commands fail:Port Conflicts
If ports are already in use:API Key Errors
Ensure your API keys are valid:Next Steps
- First Agent - Build your first agent
- Playground - Explore the dashboard
- Agent Configuration - Configure agents
- Local Runtime - Local development guide