# USG Filmmaker Pro — Environment Configuration

# Database
DATABASE_URL=sqlite:///./usg_filmmaker.db
# DATABASE_URL=postgresql+asyncpg://user:pass@localhost/usg_filmmaker

# AI Providers (optional — app works without these)
OPENAI_API_KEY=
ANTHROPIC_API_KEY=
GEMINI_API_KEY=
OLLAMA_BASE_URL=http://localhost:11434

# App Settings
USG_DEBUG=false
USG_LOG_LEVEL=INFO
USG_DATA_DIR=~/.usg-filmmaker

# Web portal
USG_WEB_HOST=0.0.0.0
USG_WEB_PORT=8080
USG_SECRET_KEY=change-me-in-production

# Security
JWT_SECRET=USGFilmmaker_ChangeThis_2024!
ALLOWED_ORIGINS=http://localhost:8080,http://localhost:3002
