Online-Tutoring-Application

A web application built with a frontend using Vite, React-TS, and Tailwind CSS, and a backend using Node.js and Express.

Online Tutoring Application Manual: https://docs.google.com/document/d/18vnUUjCJ4HGWJHpQj2tQufEScNDzqMJWEJ5Fabllz1E/

Table of Contents

Getting Started

Prerequisites

  • Node.js and npm
  • Git

Installation

  1. Clone the repository:

    git clone https://github.com/saaketporay/Online-Tutoring-Application.git
  2. Navigate to the project directory:

    cd Online-Tutoring-Application
  3. Install frontend dependencies:

    cd frontend
    npm install
  4. Install backend dependencies:

    cd backend
    npm install

Usage

Frontend

To start the frontend development server:

cd frontend
npm run dev

Backend

To start the backend server:

cd backend
npm run start