-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
40 lines (32 loc) · 1.14 KB
/
env.example
File metadata and controls
40 lines (32 loc) · 1.14 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
# Database Configuration
DB_NAME=crypto_news
DB_USER=user
DB_PASS=password
# AWS Configuration
AWS_ACCESS_KEY_ID=your_access_key_here
AWS_SECRET_ACCESS_KEY=your_secret_key_here
AWS_DEFAULT_REGION=us-east-1
# S3 Configuration (Student's own bucket)
S3_BUCKET_NAME=your-student-bucket-name
S3_BUCKET_REGION=us-east-1
# CoinGecko API
COINGECKO_API_KEY=your_api_key_here
# Amazon Bedrock Configuration
AWS_BEDROCK_REGION=us-east-1
BEDROCK_MODEL_ID=anthropic.claude-3-haiku-20240307-v1:0
BEDROCK_EMBEDDING_MODEL_ID=amazon.titan-embed-text-v2:0
# API Security
API_KEY=your-secret-api-key-here
# Grafana Cloud Configuration (for observability - OPTIONAL)
# Get these from: https://grafana.com → Connections → Add new connection → Hosted Prometheus metrics
# GRAFANA_CLOUD_PROMETHEUS_URL=https://prometheus-prod-XX-XXX.grafana.net/api/prom/push
# GRAFANA_CLOUD_PROMETHEUS_USERNAME=your-username-here
# GRAFANA_CLOUD_PROMETHEUS_PASSWORD=your-api-key-here
# Telemetry
PROMETHEUS_ENABLED=true
JAEGER_ENABLED=true
OTEL_SERVICE_NAME=crypto-sentiment-agent
OTEL_EXPORTER_JAEGER_ENDPOINT=http://jaeger:14268/api/traces
# Optional: For development
DEBUG=true
LOG_LEVEL=INFO