Commit Graph

60 Commits

Author SHA1 Message Date
Francesco
7b87ff2f04 chore: Update auth files for NextAuth v5 compatibility
Breaking changes for NextAuth v5:
- Updated route.ts to use NextAuthConfig and new export pattern
- Changed getServerSession import to use auth from config
- Updated types and session handling for NextAuth v5
- Maintained backward compatibility with existing auth flow
2026-02-19 02:57:42 +00:00
Francesco
11af7921e8 chore: Add output: 'standalone' to Next.js config for Docker compatibility
- Ensures Next.js 16 generates minimal standalone output
- Required for the Dockerfile's production stage to work correctly
2026-02-19 02:57:04 +00:00
Francesco
8fe93c8a39 chore: Update to Next.js 16 and latest dependencies
Major updates:
- next: 15.1.3 -> 16.0.0
- next-auth: 4.24.8 -> 5.0.0-beta.25 (Next-Auth v5 for Next.js 16)
- react: 19.0.0 -> 19.1.0
- react-dom: 19.0.0 -> 19.1.0

Other updates:
- recharts: 2.15.0 -> 2.16.0
- lucide-react: 0.474.0 -> 0.475.0
- date-fns: 4.1.0 -> 4.2.0
- @radix-ui/*: Updated to latest
- tailwindcss: 3.4.17 -> 3.4.18
- typescript: 5.7.2 -> 5.8.0
2026-02-19 02:56:52 +00:00
Francesco
a542eee29c chore: Update tsconfig.json for Next.js 15 compatibility
- Remove .next/types/**/*.ts from include (no longer needed in Next.js 15)
2026-02-19 02:52:28 +00:00
Francesco
9fa29059da chore: Update all dependencies to latest versions
Backend updates:
- elysia: 1.0.20 -> 1.1.13
- @elysiajs/*: 1.0.2 -> 1.1.0
- pg: 8.11.3 -> 8.13.1
- postgres: 3.4.4 -> 3.4.5
- dotenv: 16.4.5 -> 16.4.7
- zod: 3.22.4 -> 3.24.1
- @types/*: Updated to latest

Frontend updates:
- next: 14.2.0 -> 15.1.3
- react: 18.3.0 -> 19.0.0
- react-dom: 18.3.0 -> 19.0.0
- next-auth: 4.24.0 -> 4.24.8
- recharts: 2.12.0 -> 2.15.0
- lucide-react: 0.344.0 -> 0.474.0
- date-fns: 3.3.0 -> 4.1.0
- @radix-ui/*: Updated to latest
- tailwindcss: 3.4.0 -> 3.4.17
- typescript: 5.3.0 -> 5.7.2
2026-02-19 02:52:06 +00:00
Francesco
69994c8af2 fix: Use npm install instead of npm ci (no package-lock.json) 2026-02-19 02:40:41 +00:00
Francesco
da34fc0304 fix: Correct backend healthcheck command - remove 'run' from bun -e 2026-02-19 02:34:40 +00:00
Francesco
b8ccd00cb4 Fix docker-compose.yml - remove external network
Remove 'external: true' from the fiscal network to allow Docker Compose
to create it automatically during deployment. This fixes the deployment
failure in Coolify where the network doesn't exist.
2026-02-18 06:43:44 +00:00
Francesco
973f0c85fa Fix backend Dockerfile - remove unnecessary build step
The backend is designed to run TypeScript directly with Bun, not to build.
Updated Dockerfile to skip build step and run src/index.ts directly.
2026-02-18 06:37:53 +00:00
Francesco
da58289eb1 feat: Complete Fiscal Clone deployment package
- SEC filings extraction (10-K, 10-Q, 8-K)
- Portfolio analytics with real-time prices
- Watchlist management
- NextAuth.js authentication
- OpenClaw AI integration
- PostgreSQL database with auto P&L calculations
- Elysia.js backend (Bun runtime)
- Next.js 14 frontend (TailwindCSS + Recharts)
- Production-ready Docker configurations
2026-02-16 03:49:32 +00:00