Skip to content

Local Dev Setup — Frontend

Drive-Shift Bot edited this page Jul 5, 2026 · 1 revision

Local Dev Setup — Frontend

Follow these steps to run the Next.js React frontend application locally.

Prerequisites

  • Node.js v20+
  • npm v10+

Configuration

  1. Navigate to the frontend directory:
    cd frontend
  2. Create a .env.local file in the frontend folder matching frontend/.env.example.
  3. To run the frontend against the mocked API layer (without running the Spring Boot backend), set:
    NEXT_PUBLIC_USE_MOCK_API=true

Installation & Launch

  1. Install dependencies:
    npm install
  2. Run the dev server on port 3000:
    npm run dev
  3. Open http://localhost:3000 in your browser.

Clone this wiki locally