24 lines
770 B
Plaintext
24 lines
770 B
Plaintext
|
|
# AI Station - Environment Variables Template
|
||
|
|
# Copy this file to .env and fill in your values
|
||
|
|
# IMPORTANT: Never commit .env to version control!
|
||
|
|
|
||
|
|
# === GOOGLE OAUTH ===
|
||
|
|
OAUTH_GOOGLE_CLIENT_ID=your_client_id_here
|
||
|
|
OAUTH_GOOGLE_CLIENT_SECRET=your_client_secret_here
|
||
|
|
|
||
|
|
# === CHAINLIT CONFIGURATION ===
|
||
|
|
CHAINLIT_URL=https://ai.dffm.it
|
||
|
|
CHAINLIT_AUTH_SECRET=generate_a_secure_random_string_here
|
||
|
|
|
||
|
|
# === DATABASE ===
|
||
|
|
# Format: postgresql+asyncpg://username:password@hostname:port/database_name
|
||
|
|
DATABASE_URL=postgresql+asyncpg://ai_user:your_secure_password@postgres:5432/ai_station
|
||
|
|
|
||
|
|
# === AI SERVICES ===
|
||
|
|
OLLAMA_URL=http://192.168.1.243:11434
|
||
|
|
QDRANT_URL=http://qdrant:6333
|
||
|
|
BGE_API_URL=http://192.168.1.243:8001/embed
|
||
|
|
|
||
|
|
# === OPTIONAL ===
|
||
|
|
# GEMINI_API_KEY=your_gemini_api_key_here
|