Skip to content

yuvrajsinh5252/MindHub

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

57 Commits
 
 
 
 
 
 
 
 

Repository files navigation

MindHub

This is a project that aims to create a platform for people to share their knowledge and learn from others.

Preview

preview

Getting Started

Frontend

  1. Change directory to the frontend folder:

    cd frontend
  2. Install the dependencies:

     npm install # or bun install
  3. Create a .env file in the root directory and copy the contents from the provided .env.example file:

    cp .env.example .env

    Make sure to update the values in the .env file according to your specific configuration.

  4. Start the frontend server:

    npm run dev # or bun dev

Backend

  1. Change directory to the backend folder:

    cd backend
  2. Install the dependencies:

    bun install
  3. Create a .env file in the root directory and copy the contents from the provided .env.example file:

    cp .env.example .env

    Make sure to update the values in the .env file according to your specific configuration.

  4. Start the backend server:

    bun dev