waveform/README.md
Chneemann ba8bcd6116
All checks were successful
Deploy Waveform to VPS / deploy (push) Successful in 1m6s
docs(readme): add CI/CD deployment status badges and details
2026-09-10 11:24:59 +02:00

3.2 KiB

Waveform

A modern, high-performance real-time chat application, designed for seamless communication.

Deployment Status Website Status Next.js React TypeScript Tailwind CSS Auth.js Drizzle ORM PostgreSQL

🛠️ Tech Stack

📂 Architecture & Structure

The project uses Next.js Route Groups without a src/ directory to maintain a clean root layout:

  • app/(app)/ — Application routes (Layout, Home, Components)
  • app/(auth)/ — Public authentication routes (Login, Register)
  • app/api/ — Backend API endpoints & Auth handlers ([...nextauth])
  • components/ — Modular UI components (Chat, Navigation, Sidebars)
  • db/ — Database schema definitions, migrations, and Drizzle configuration (drizzle.config.ts)
  • lib/ — Centralized core logic folder containing:
    • stores/ — State management stores
    • schemas/ — Zod validation schemas
    • types/ — Global TypeScript interfaces and type definitions
    • services/ — Business logic layers and external API integration services
  • public/ — Static assets (images, icons, fonts)

🚀 CI/CD & Deployment

Deployments are fully automated using Forgejo Actions and SSH:

  1. Automated Trigger: Pushes to the main branch trigger the SSH deployment workflow.
  2. Database Schema Sync: Migrations are applied in milliseconds using drizzle-kit push executed directly inside the active waveform-studio container.
  3. Zero-Downtime Container Rebuild: Rebuilds production Docker images (waveform) without disrupting live database volumes.

🎯 Current Status

In Progress — Application scaffold initialized with Next.js 16, React 19, Tailwind CSS v4, and TypeScript. Database layer fully set up with PostgreSQL and Drizzle ORM schemas, full authentication (Auth.js v5). DevOps infrastructure implemented.