Quick Start
Installation
# Clone the repository
git clone <your-repo>
cd liz
# Install dependencies
pnpm installEnvironment Setup
# Database configuration (choose one)
DATABASE_URL="postgresql://user:password@localhost:5432/dbname"
# Or for SQLite:
DATABASE_URL="file:./prisma/dev.db"
# LLM API Keys
OPENAI_API_KEY="your-openai-api-key"
OPENROUTER_API_KEY="your-openrouter-api-key"
# Application URL (required for OpenRouter)
APP_URL="http://localhost:3000"Initialize Database
Create Your First Agent
Set Up Express Server
Run the Server
Test Your Agent
Last updated