logo

Loading...

Installation

This guide will walk you through setting up the ITGoiT development environment.

Prerequisites

  • Node.js (v18 or higher)
  • npm, pnpm, or yarn
  • Git & PostgreSQL
  • Clone the repository

    git clone [your-repo-url]

    Install frontend dependencies

    cd frontend && npm install

    Install backend dependencies

    cd ../backend && npm install

    Set up environment variables

    Create a .env file in both the frontend and backend directories based on the provided .env.example

    Run the development servers

    Frontend

    npm run dev:frontend

    Backend

    npm run dev:backend

    Access the application

    Open your browser and navigate to http://localhost:3000