-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
21 lines (17 loc) · 742 Bytes
/
Copy path.env.example
File metadata and controls
21 lines (17 loc) · 742 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# ==============================================
# RetrievAI Environment Configuration
# Copy this to .env and update with your values
# ==============================================
# OpenAI API Key (Required)
# Get your key from: https://platform.openai.com/api-keys
OPENAI_API_KEY=sk-your-openai-api-key-here
# Database credentials (Change in production!)
POSTGRES_USER=retrievai
POSTGRES_PASSWORD=change-this-in-production
POSTGRES_DB=retrievai
# Application secret key (IMPORTANT: Generate a secure random string for production)
# Generate with: python -c "import secrets; print(secrets.token_urlsafe(32))"
SECRET_KEY=change-this-to-a-secure-random-string-min-32-characters-required
# Environment
ENVIRONMENT=development
DEBUG=true