Skip to content

Latest commit

 

History

History
39 lines (26 loc) · 830 Bytes

File metadata and controls

39 lines (26 loc) · 830 Bytes

MERN Stack Project with MySQL

This project is a MERN stack application using MySQL as the database. The basic boilerplate code is already set up, with the frontend in the frontend folder and the backend in the backend folder.

Getting Started

Install Dependencies

  1. Navigate to the frontend directory and install the dependencies:

    cd frontend
    npm install
  2. Navigate to the backend directory and install the dependencies:

    cd ../backend
    npm install

Start the Project

  1. Start the frontend development server:

    cd ../frontend
    npm run dev
  2. Start the backend development server:

    cd ../backend
    npm run dev

Now, your project should be up and running