Installation
This guide will walk you through setting up the ITGoiT development environment.
Prerequisites
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
