SQLite
SQLite is the simplest option for local development and testing.Installation
Quick Start
File Path Options
Environment Variables
CLI
When to Use SQLite
✅ Good for:- Local development
- Testing
- Single-user applications
- Prototyping
- Production multi-user apps
- High concurrency
- Distributed systems
Storage Backend (Advanced)
For training data, sessions, and general persistence, use theSQLiteBackend:
CLI Usage
Troubleshooting
File permissions:- SQLite only allows one writer at a time
- Use PostgreSQL for concurrent access

