Files
livedash-node/GEMINI.md
Max Kowalski fd55b30398 shit
2025-06-26 22:43:22 +02:00

857 B

Project Overview

This project is a Next.js application with a Node.js backend, designed to provide a live dashboard for data visualization and session management.

Setup

To set up the project, follow these steps:

  1. Install Dependencies:

    npm install
    
  2. Environment Variables: Create a .env file based on .env.example and fill in the necessary environment variables.

  3. Database Setup: Run database migrations:

    npx prisma migrate dev
    

    Seed the database (optional):

    npx prisma db seed
    
  4. Run Development Server:

    npm run dev
    

Common Commands

  • Run Tests:

    npm test
    
  • Run Linter:

    npm run lint
    
  • Build Project:

    npm run build