-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
98 lines (73 loc) · 3 KB
/
.env.example
File metadata and controls
98 lines (73 loc) · 3 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
# =============================================================================
# ENVIRONMENT VARIABLES TEMPLATE
# =============================================================================
# Copy this file to .env and fill in your actual values
# Never commit .env to git!
# =============================================================================
# API KEYS
# =============================================================================
# OpenAI API Key
# Get from: https://platform.openai.com/api-keys
OPENAI_API_KEY=sk-proj-your_key_here
# Anthropic Claude API Key
# Get from: https://console.anthropic.com/
ANTHROPIC_API_KEY=sk-ant-your_key_here
# Google Gemini API Key
# Get from: https://makersuite.google.com/app/apikey
GEMINI_API_KEY=your_key_here
# =============================================================================
# APPLICATION CONFIGURATION
# =============================================================================
# Environment (development, staging, production)
ENVIRONMENT=development
# Debug mode (True/False)
DEBUG=True
# Log level (DEBUG, INFO, WARNING, ERROR, CRITICAL)
LOG_LEVEL=INFO
# =============================================================================
# DATABASE CONFIGURATION (if needed)
# =============================================================================
# Database URL
DATABASE_URL=sqlite:///app.db
# PostgreSQL (example)
# DATABASE_URL=postgresql://user:password@localhost:5432/dbname
# =============================================================================
# DATA PATHS
# =============================================================================
# Data directory
DATA_DIR=./data
# Output directory
OUTPUT_DIR=./output
# =============================================================================
# ANALYSIS CONFIGURATION
# =============================================================================
# Number of top products to show
TOP_N_PRODUCTS=5
# Currency symbol
CURRENCY_SYMBOL=Rs.
# Date format
DATE_FORMAT=%Y-%m-%d
# =============================================================================
# EMAIL CONFIGURATION (if using email reports)
# =============================================================================
# Email settings
SMTP_HOST=smtp.gmail.com
SMTP_PORT=587
SMTP_USER=your_email@gmail.com
SMTP_PASSWORD=your_app_password
# Report recipient
REPORT_EMAIL=recipient@example.com
# =============================================================================
# THIRD-PARTY SERVICES
# =============================================================================
# Telegram Bot Token (if using)
TELEGRAM_BOT_TOKEN=your_bot_token_here
# Slack Webhook (if using)
SLACK_WEBHOOK_URL=https://hooks.slack.com/services/YOUR/WEBHOOK/URL
# =============================================================================
# NOTES
# =============================================================================
# - Never share this file with real values
# - Keep .env in .gitignore
# - Use descriptive variable names
# - Document what each variable does