The literal <username> string was being copied to .env.local, causing EACCES errors when the app tried to create /Users/<username>/... Now commented out - the code auto-detects using os.homedir() 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
25 lines
837 B
Bash
25 lines
837 B
Bash
# Database Configuration - SQLite (production ready)
|
|
# Paths use sensible defaults if not specified
|
|
# SQLITE_DB_PATH=$HOME/Library/Application Support/RA-H/db/rah.sqlite
|
|
SQLITE_VEC_EXTENSION_PATH=./vendor/sqlite-extensions/vec0.dylib
|
|
|
|
# AI API Keys (main orchestrator + mini agents)
|
|
ANTHROPIC_API_KEY=your-anthropic-api-key-here
|
|
OPENAI_API_KEY=your-openai-api-key-here
|
|
|
|
# Optional overrides specifically for ra-h orchestration/delegation
|
|
RAH_ORCHESTRATOR_ANTHROPIC_API_KEY=
|
|
RAH_DELEGATE_OPENAI_API_KEY=
|
|
RAH_WISE_RAH_OPENAI_API_KEY= # Optional: GPT-5 for wise ra-h (falls back to OPENAI_API_KEY)
|
|
|
|
# Voice TTS defaults
|
|
RAH_TTS_MODEL=gpt-4o-mini-tts
|
|
RAH_TTS_VOICE=ash
|
|
RAH_TTS_COST_PER_1K_CHAR_USD=0.015
|
|
|
|
# Application Configuration
|
|
NODE_ENV=development
|
|
PORT=3000
|
|
NEXT_PUBLIC_APP_URL=http://localhost:3000
|
|
NEXT_PUBLIC_DEPLOYMENT_MODE=local
|