mirror of
https://github.com/shawnkim1997/All-in-one-Financial-Analysis.git
synced 2026-08-23 07:38:06 +00:00
Full documentation covering all 10 pages, 5 valuation models, architecture diagram, API endpoints, tech stack, Terminal Noir design system, and project evolution from Streamlit to Next.js. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
28 lines
724 B
Markdown
28 lines
724 B
Markdown
# ATLAS Terminal — Web Application
|
|
|
|
> Next.js 14 + FastAPI full-stack financial analysis terminal.
|
|
>
|
|
> See the [main README](../README.md) for full documentation.
|
|
|
|
## Quick Start
|
|
|
|
```bash
|
|
# Backend (from atlas-terminal/)
|
|
pip install -r requirements.txt
|
|
PYTHONPATH="." uvicorn server.main:app --port 8000
|
|
|
|
# Frontend (from atlas-terminal/apps/web/)
|
|
npm install
|
|
npm run dev
|
|
```
|
|
|
|
- **Frontend:** http://localhost:3000
|
|
- **Backend:** http://localhost:8000
|
|
- **API Docs:** http://localhost:8000/docs
|
|
|
|
## Stack
|
|
|
|
- **Frontend:** Next.js 14, TypeScript, Tailwind CSS, TradingView Lightweight Charts
|
|
- **Backend:** FastAPI, Python 3.12+, yfinance, yahooquery, Google Gemini
|
|
- **Database:** SQLite (local) / PostgreSQL (production)
|