A React + Vite application designed to streamline education and enhance learning experiences.
Getting Started
This guide details the installation and setup process for eduplus.
Prerequisites
- Node.js (version 14.x or newer): https://nodejs.org/en
- npm (version 6.x or newer) or yarn (version 1.x or higher):
- npm comes bundled with Node.js installation.
- For yarn: https://yarnpkg.com/
Installation
-
Clone the Repository:
git clone https://github.com/your-username/eduplus.git
Replace
your-username
with your actual GitHub username. -
Navigate to Project Directory:
cd eduplus
-
Install Dependencies:
Use either npm or yarn to install the project's dependencies:
-
Using npm:
npm install
-
Using yarn:
yarn install
-
Development
Once the dependencies are installed, you can start the development server to run the application locally:
npm run dev
# or
yarn dev
This will typically start the development server at http://localhost:3000 (the exact port may vary). You can then open this URL in your web browser to view the running eduplus application.