-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
29 lines (23 loc) · 815 Bytes
/
env.example
File metadata and controls
29 lines (23 loc) · 815 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
# Database Configuration (for Next.js Dashboard)
DB_HOST=localhost
DB_USER=root
DB_PASSWORD=your-password-here
DB_PORT=3306
DB_NAME=pdp_analytics
# Supabase Configuration
SUPABASE_URL=https://ebnptsplhfktzxsiuuyp.supabase.co
SUPABASE_SERVICE_ROLE_KEY=your-service-role-key-here
SUPABASE_ANON_KEY=your-anon-key-here
# Syntex AI Schools API
SYNTEX_API_BASE_URL=https://schools.syntex-ai.com
SYNTEX_API_KEY=your-syntex-api-key-if-needed
# OpenAI Configuration (for Next.js Dashboard LLM features)
OPENAI_API_KEY=your-openai-api-key-here
NEXT_PUBLIC_ENABLE_LLM=1
# ETL Configuration
BRONZE_SCHEMA=bronze
LOG_LEVEL=INFO
BATCH_SIZE=1000
# Pagination Configuration
PAGE_SIZE=100 # Records per page when fetching from API
MAX_PAGES=100 # Maximum number of pages to fetch per endpoint (safety limit)