Skip to main content

Development Setup Guide

Windows 11 Setup

1. Install WSL2

wsl --install

2. Install Node.js

curl -fsSL https://deb.nodesource.com/setup_22.x | sudo -E bash -
sudo apt-get install -y nodejs

3. Install PostgreSQL

sudo apt install postgresql postgresql-contrib

4. Clone and Run

git clone https://github.com/rajesh-coder-hai/edupulse.git
cd edupulse
npm install
npm run dev