34 lines
659 B
Bash
34 lines
659 B
Bash
|
|
# Database
|
||
|
|
DB_HOST=localhost
|
||
|
|
DB_PORT=5432
|
||
|
|
DB_NAME=landvex
|
||
|
|
DB_USER=postgres
|
||
|
|
DB_PASSWORD=your_password
|
||
|
|
|
||
|
|
# OpenAI
|
||
|
|
OPENAI_API_KEY=sk-your-openai-key
|
||
|
|
|
||
|
|
# Anthropic (alternative)
|
||
|
|
ANTHROPIC_API_KEY=sk-ant-your-anthropic-key
|
||
|
|
|
||
|
|
# Server
|
||
|
|
PORT=3000
|
||
|
|
NODE_ENV=development
|
||
|
|
|
||
|
|
# JWT
|
||
|
|
JWT_SECRET=your-super-secret-jwt-key-change-in-production
|
||
|
|
|
||
|
|
# Email (for report delivery)
|
||
|
|
SMTP_HOST=smtp.gmail.com
|
||
|
|
SMTP_PORT=587
|
||
|
|
SMTP_USER=your-email@gmail.com
|
||
|
|
SMTP_PASSWORD=your-app-password
|
||
|
|
|
||
|
|
# Redis (for Bull queues)
|
||
|
|
REDIS_URL=redis://localhost:6379
|
||
|
|
|
||
|
|
# API Keys for data sources
|
||
|
|
STATISTA_API_KEY=your-statista-key
|
||
|
|
QUIXZOOM_API_KEY=your-quixzoom-key
|
||
|
|
GOOGLE_TRENDS_API_KEY=your-google-trends-key
|