mirror of
https://github.com/kjanat/livedash-node.git
synced 2026-01-16 07:32:11 +01:00
857 B
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:
-
Install Dependencies:
npm install -
Environment Variables: Create a
.envfile based on.env.exampleand fill in the necessary environment variables. -
Database Setup: Run database migrations:
npx prisma migrate devSeed the database (optional):
npx prisma db seed -
Run Development Server:
npm run dev
Common Commands
-
Run Tests:
npm test -
Run Linter:
npm run lint -
Build Project:
npm run build