feat: initialize Next.js project with database schema

- Set up Next.js with App Router, TypeScript, Tailwind CSS
- Configure shadcn/ui with dark theme
- Install dependencies: lightweight-charts, papaparse, lucide-react
- Set up Drizzle ORM with better-sqlite3
- Create database schema for candles and annotations tables
- Generate migration SQL
This commit is contained in:
Marko Djordjevic 2026-02-12 10:23:02 +01:00
parent 7d2fc42b73
commit d04b673cfa
25 changed files with 903 additions and 0 deletions

10
src/app/page.tsx Normal file
View file

@ -0,0 +1,10 @@
export default function Home() {
return (
<main className="min-h-screen p-8">
<h1 className="text-2xl font-bold">Candle Annotator</h1>
<p className="mt-4 text-slate-400">
Upload CSV data and annotate candlestick charts
</p>
</main>
);
}