- docker-compose.yml: timescaledb-ha (timescaledb 2.27 + vectorscale + pgvector + pgai) + backend (FastAPI, CUDA 12.1) + web (Next.js 14) - docker-compose.gpu.yml: GPU profile overlay for RTX 3070 Ti - build.bat: Windows bootstrap, auto-detects nvidia-smi and selects GPU/CPU compose - backend: Dockerfile, pyproject.toml, FastAPI skeleton with /health and /health/db - DB migration 001_init.sql: symbols (with trigram search), ohlcv_daily/1m (hypertables), macro_daily, trading_value_daily, news (vector embedding), predictions (with user_triggered flag for on-demand UX), prediction_outcomes, model_performance - web: Next.js 14 + Tailwind + lightweight-charts placeholder - README: KIS/DART/HuggingFace token issuance guides + 10 seed tickers + run instructions
15 lines
599 B
TypeScript
15 lines
599 B
TypeScript
export default function HomePage() {
|
|
return (
|
|
<main className="mx-auto max-w-3xl px-6 py-16">
|
|
<h1 className="text-3xl font-bold tracking-tight">Stock Chart Site</h1>
|
|
<p className="mt-3 text-sm text-zinc-400">
|
|
Phase 0 scaffold. 종목 검색 UI는 Phase 6에서 추가됩니다.
|
|
</p>
|
|
<div className="mt-8 rounded-md border border-zinc-800 bg-zinc-900/50 p-4 text-sm">
|
|
<div className="font-medium">Backend health</div>
|
|
<code className="mt-2 block text-zinc-400">GET {process.env.NEXT_PUBLIC_API_BASE}/health</code>
|
|
</div>
|
|
</main>
|
|
);
|
|
}
|