17 lines
593 B
Bash
17 lines
593 B
Bash
# Copy this file to .env.local and fill in the real values.
|
|
# .env.local is gitignored and will override these defaults.
|
|
# In production / Docker, supply these as environment variables.
|
|
|
|
DATABASE_URL=postgres://user:password@localhost:5432/recommender
|
|
|
|
# AI provider selection: OPENAI (default) or GENERIC
|
|
AI_PROVIDER=OPENAI
|
|
|
|
# OpenAI provider settings (used when AI_PROVIDER=OPENAI)
|
|
OPENAI_API_KEY=your-openai-api-key-here
|
|
|
|
# Generic provider settings (used when AI_PROVIDER=GENERIC)
|
|
PROVIDER_URL=https://your-provider.example.com/v1
|
|
BEARER_TOKEN=your-bearer-token
|
|
MODEL_NAME=your-model-name
|