-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
31 lines (24 loc) · 878 Bytes
/
.env.example
File metadata and controls
31 lines (24 loc) · 878 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# SQL-Ball Environment Configuration
# Copy this file to .env and fill in your actual values
# Supabase Configuration
VITE_SUPABASE_URL=https://your-project.supabase.co
VITE_SUPABASE_ANON_KEY=your-anon-key-here
# OpenAI Configuration (for RAG system)
VITE_OPENAI_API_KEY=sk-your-openai-api-key-here
# ChromaDB Configuration (optional - defaults to localhost:8000)
VITE_CHROMA_URL=http://localhost:8000
# Football Data API (optional - for future live data integration)
VITE_FOOTBALL_DATA_API_KEY=your-football-data-api-key
# App Configuration
VITE_APP_NAME=SQL-Ball
VITE_APP_VERSION=1.6.0
VITE_APP_ENV=production
# Feature Flags
VITE_ENABLE_AI_FEATURES=true
VITE_ENABLE_VISUAL_QUERY_BUILDER=true
VITE_ENABLE_PATTERN_DISCOVERY=true
VITE_ENABLE_SQL_LEARNING_MODE=true
# Performance Settings
VITE_MAX_QUERY_RESULTS=1000
VITE_QUERY_TIMEOUT_MS=30000
VITE_CACHE_TTL_SECONDS=3600