Skip to content

Installation & Setup

Prerequisites

  • Go 1.21+ (for the backend)
  • Node.js 20+ (for the frontend)
  • npm or yarn

Backend Setup

  1. Navigate to the backend directory:
    cd backend
    
  2. Install dependencies:
    go mod tidy
    
  3. Run the server:
    go run main.go
    
    The API will be available at http://localhost:8080.

Frontend Setup

  1. Navigate to the frontend directory:
    cd frontend
    
  2. Install dependencies:
    npm install
    
  3. Run the development server:
    npm run dev
    
    The dashboard will be available at http://localhost:5173.