💻 Local Development Guide
This guide covers setting up and working with Eliza in a development environment.
Prerequisites
Before you begin, ensure you have:
# Required
Node.js 23+
pnpm
Git
# Optional but recommended
VS Code
Docker (for database development)
CUDA Toolkit (for GPU acceleration)
Initial Setup
1. Repository Setup
# Clone the repository
git clone https://github.com/elizaos/eliza.git
cd eliza
# Install dependencies
pnpm install
# Install optional dependencies
pnpm install --include=optional sharp
2. Environment Configuration
Create your development environment file:
cp .env.example .env
Configure essential development variables:
# Minimum required for local development
OPENAI_API_KEY=sk-* # Optional, for OpenAI features
X_SERVER_URL= # Leave blank for local inference
XAI_API_KEY= # Leave blank for local inference
XAI_MODEL=meta-llama/Llama-3.1-7b-instruct # Local model
3. Local Model Setup
For local inference without API dependencies:
# Install CUDA support for NVIDIA GPUs
npx --no node-llama-cpp source download --gpu cuda
# The system will automatically download models from
# Hugging Face on first run
Development Workflow
Running the Development Server
# Start with default character
pnpm run dev
# Start with specific character
pnpm run dev --characters="characters/my-character.json"
# Start with multiple characters
pnpm run dev --characters="characters/char1.json,characters/char2.json"
Development Commands
pnpm run build # Build the project
pnpm run clean # Clean build artifacts
pnpm run dev # Start development server
pnpm run test # Run tests
pnpm run test:watch # Run tests in watch mode
pnpm run lint # Lint code
Direct Client Chat UI
# Open a terminal and Start with specific character
pnpm run dev --characters="characters/my-character.json"
# Open a 2nd terminal and start the client
pnpm start:client
Look for the message:
➜ Local: http://localhost:5173/
Click on that link or open a browser window to that location. Once you do that you should see the chat interface connect with the system and you can start interacting with your character.
Database Development
SQLite (Recommended for Development)
import { SqliteDatabaseAdapter } from "@elizaos/core/adapters";
import Database from "better-sqlite3";
const db = new SqliteDatabaseAdapter(new Database("./dev.db"));
In-Memory Database (for Testing)
import { SqlJsDatabaseAdapter } from "@elizaos/core/adapters";
const db = new SqlJsDatabaseAdapter(new Database(":memory:"));
Schema Management
# Create new migration
pnpm run migration:create
# Run migrations
pnpm run migration:up
# Rollback migrations
pnpm run migration:down