-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
35 lines (27 loc) · 873 Bytes
/
Copy pathenv.example
File metadata and controls
35 lines (27 loc) · 873 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
32
33
34
35
# Portfolio Coach Environment Configuration
# Copy this file to .env and update with your actual values
# Database Configuration
DB_PASSWORD=portfolio_password
DATABASE_URL=postgresql://portfolio_user:portfolio_password@localhost:5434/portfolio_coach
# Redis Configuration
REDIS_URL=redis://localhost:6381/0
# Upstox API Configuration
UPSTOX_ACCESS_TOKEN=your_upstox_access_token_here
# OpenAI API Configuration
OPENAI_API_KEY=your_openai_api_key_here
# Application Configuration
ENV=development
DEBUG=True
LOG_LEVEL=INFO
# Database Pool Configuration
DB_POOL_SIZE=10
DB_MAX_OVERFLOW=20
# Slack Configuration (optional)
SLACK_BOT_TOKEN=your_slack_bot_token_here
SLACK_CHANNEL=#portfolio-coach
# Email Configuration (optional)
SMTP_HOST=smtp.gmail.com
SMTP_PORT=587
SMTP_USERNAME=your_email@gmail.com
SMTP_PASSWORD=your_app_password_here
EMAIL_TO=akshay@example.com