Follow these steps to set up the project on your local machine.
- Download Node.js: Visit the Node.js official website and download the latest version suitable for your operating system.
- Install Node.js: Run the downloaded installer and follow the prompts to complete the installation.
npm (Node Package Manager) is automatically installed with Node.js. To verify that npm is installed, run the following command in your terminal:
npm -vYou should see the version number of npm displayed.
Navigate to the root directory of your project in your terminal and run the following command to install the necessary packages:
npm installThis will install all the dependencies listed in your package.json file.
For testing and interacting with your API, you can use tools like Postman or Insomnia.
To start the project, run the following command in your terminal:
npm run devThe following Entity-Relationship Diagram (ERD) shows how the various entities in the project are linked together.
Replace path/to/your/erd-diagram.png with the actual path to your ERD diagram image.

