-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
29 lines (22 loc) · 1.16 KB
/
Copy path.env.example
File metadata and controls
29 lines (22 loc) · 1.16 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
# ─────────────────────────────────────────────────────────────────────────────
# Copy this file to .env and fill in your credentials.
# NEVER commit .env to version control.
# ─────────────────────────────────────────────────────────────────────────────
# ── NewsAPI (minimum for NLP MVP) ──
NEWSAPI_KEY=your_newsapi_key
# ── Alpha Vantage (minimum for NLP MVP) ──
ALPHA_VANTAGE_KEY=your_alpha_vantage_key
# ── HuggingFace (optional, better sentiment model loading) ──
HUGGINGFACE_TOKEN=your_hf_token
# ── Reddit (optional, may require API approval) ──
REDDIT_CLIENT_ID=
REDDIT_CLIENT_SECRET=
REDDIT_USER_AGENT=
# ── Twitter / X API v2 (optional, may require paid access) ──
TWITTER_BEARER_TOKEN=
# ── Optional future sources ──
FINNHUB_KEY=
FRED_API_KEY=
# ── Logging ──
LOG_LEVEL=INFO
LOG_FILE=logs/pipeline.log