Initial commit: Port Nimara CRM (Layers 0-4)
Full CRM rebuild with Next.js 15, TypeScript, Tailwind, Drizzle ORM,
PostgreSQL, Redis, BullMQ, MinIO, and Socket.io. Includes 461 source
files covering clients, berths, interests/pipeline, documents/EOI,
expenses/invoices, email, notifications, dashboard, admin, and
client portal. CI/CD via Gitea Actions with Docker builds.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-26 11:52:51 +01:00
|
|
|
// Ports
|
|
|
|
|
export * from './ports';
|
|
|
|
|
|
|
|
|
|
// Users & Auth
|
|
|
|
|
export * from './users';
|
|
|
|
|
|
|
|
|
|
// Clients
|
|
|
|
|
export * from './clients';
|
|
|
|
|
|
2026-04-23 17:54:02 +02:00
|
|
|
// Companies
|
|
|
|
|
export * from './companies';
|
|
|
|
|
|
2026-04-23 17:51:19 +02:00
|
|
|
// Yachts
|
|
|
|
|
export * from './yachts';
|
|
|
|
|
|
Initial commit: Port Nimara CRM (Layers 0-4)
Full CRM rebuild with Next.js 15, TypeScript, Tailwind, Drizzle ORM,
PostgreSQL, Redis, BullMQ, MinIO, and Socket.io. Includes 461 source
files covering clients, berths, interests/pipeline, documents/EOI,
expenses/invoices, email, notifications, dashboard, admin, and
client portal. CI/CD via Gitea Actions with Docker builds.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-26 11:52:51 +01:00
|
|
|
// Interests
|
|
|
|
|
export * from './interests';
|
|
|
|
|
|
|
|
|
|
// Berths
|
|
|
|
|
export * from './berths';
|
|
|
|
|
|
2026-04-23 17:55:53 +02:00
|
|
|
// Reservations
|
|
|
|
|
export * from './reservations';
|
|
|
|
|
|
Initial commit: Port Nimara CRM (Layers 0-4)
Full CRM rebuild with Next.js 15, TypeScript, Tailwind, Drizzle ORM,
PostgreSQL, Redis, BullMQ, MinIO, and Socket.io. Includes 461 source
files covering clients, berths, interests/pipeline, documents/EOI,
expenses/invoices, email, notifications, dashboard, admin, and
client portal. CI/CD via Gitea Actions with Docker builds.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-26 11:52:51 +01:00
|
|
|
// Documents & Files
|
|
|
|
|
export * from './documents';
|
|
|
|
|
|
|
|
|
|
// Financial
|
|
|
|
|
export * from './financial';
|
|
|
|
|
|
|
|
|
|
// Email
|
|
|
|
|
export * from './email';
|
|
|
|
|
|
|
|
|
|
// Operations
|
|
|
|
|
export * from './operations';
|
|
|
|
|
|
|
|
|
|
// System
|
|
|
|
|
export * from './system';
|
|
|
|
|
|
|
|
|
|
// Relations (must come last — references all tables)
|
|
|
|
|
export * from './relations';
|