mirror of
https://github.com/shawnkim1997/All-in-one-Financial-Analysis.git
synced 2026-08-15 19:38:07 +00:00
Complete migration from Streamlit to Next.js 14 App Router + FastAPI backend. Frontend (Next.js 14): - 10 pages: Overview, Research, Valuation, Technical, Markets, Earnings, News, Portfolio, Filings, Settings - Terminal Noir dark theme with custom Tailwind config - TradingView Lightweight Charts for candlestick/volume - Valuation: DCF, Sensitivity Matrix, Monte Carlo, Tornado, Reverse DCF - Financial Statements table with YoY growth badges and margin rows - SEC EDGAR inline filing viewer with section tabs - News split-view with iframe article embedding - Technical Analysis with RSI, MACD, Bollinger, Fibonacci, Moving Averages - Earnings beat/miss visualization - AI Copilot chat panel with Gemini integration Backend (FastAPI): - 13 routers: market_data, financials, valuation, technical, earnings, insider, edgar, news, portfolio, analysis, chat, estimates, fx - Services: DCF engine, Monte Carlo simulation, sensitivity analysis, risk metrics, SEC parser, technical indicators - yfinance + yahooquery data sources with fallback pattern - SQLite caching layer Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
52 lines
541 B
Plaintext
52 lines
541 B
Plaintext
venv/
|
|
.env
|
|
.app_prefs.json
|
|
# SEC filing cache files (auto-generated, do not commit)
|
|
data/*.json
|
|
data/*.html
|
|
__pycache__/
|
|
.DS_Store
|
|
|
|
# Streamlit
|
|
.streamlit/
|
|
|
|
# Python
|
|
*.py[cod]
|
|
*.egg-info/
|
|
.eggs/
|
|
dist/
|
|
build/
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
.cursor/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Node / Next.js
|
|
node_modules/
|
|
.next/
|
|
.turbo/
|
|
|
|
# SQLite
|
|
*.db
|
|
*.db-shm
|
|
*.db-wal
|
|
|
|
# Claude
|
|
.claude/
|
|
|
|
# Package locks (keep only package.json)
|
|
package-lock.json
|
|
|
|
# SEC EDGAR cache
|
|
SEC-EDGAR-Filings/
|
|
|
|
# Backup directories
|
|
*-backup/
|
|
|
|
# Prompt files
|
|
CLAUDE_CODE_PROMPT.md
|
|
REFACTORING_PROMPT.md
|