Skip to content

Latest commit

 

History

History
33 lines (27 loc) · 554 Bytes

README.md

File metadata and controls

33 lines (27 loc) · 554 Bytes

KTDash Nextjs React App

Getting Started

First, prep your environment:

  1. Add a .env file in project root pointing to your local DB
DATABASE_URL=mysql://[user]:[password]@[host]:[port]/[dbname]]?connect_timeout=300
  1. Install dependencies
npm install --force
  1. Build prisma schemas
npx prisma db push
npx prisma generate

Then, run the development server:

npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun dev

Open http://localhost:3000 with your browser to see the result.