2026-03-02 14:15:39 +00:00
|
|
|
# AIUI Development Environment
|
|
|
|
|
# Copy this file to .env.local and fill in your values
|
|
|
|
|
|
|
|
|
|
# AI Provider (OpenRouter - gives access to many models including free ones)
|
|
|
|
|
# Get your key at: https://openrouter.ai/keys
|
|
|
|
|
VITE_OPENROUTER_API_KEY=sk-or-your-key-here
|
|
|
|
|
|
2026-03-02 16:34:44 +00:00
|
|
|
# Anthropic Claude — use ONE of these:
|
|
|
|
|
# Option 1: OAuth token from Claude Code CLI (run: claude auth login)
|
|
|
|
|
VITE_ANTHROPIC_TOKEN=sk-ant-oat01-your-token-here
|
|
|
|
|
# Option 2: API key from console (https://console.anthropic.com/settings/keys)
|
2026-03-02 14:30:19 +00:00
|
|
|
VITE_ANTHROPIC_API_KEY=sk-ant-your-key-here
|
|
|
|
|
|
2026-03-02 18:16:04 +00:00
|
|
|
# TMDB API (free, fetches posters on-demand when images fail)
|
2026-03-02 14:15:39 +00:00
|
|
|
# Get your key at: https://www.themoviedb.org/settings/api
|
2026-03-02 18:16:04 +00:00
|
|
|
TMDB_API_KEY=your-tmdb-key-here
|
2026-03-02 14:15:39 +00:00
|
|
|
|
|
|
|
|
# Development flags
|
|
|
|
|
VITE_DEV_MODE=true
|
|
|
|
|
VITE_MOCK_MEDIA_SOURCES=true
|
|
|
|
|
VITE_DISABLE_CRYPTO=true
|