library-tracker

MERN stack application to track books in a library

Installation

// Install Dependencies
cd server && npm run install
cd app && npm run install

// Create env file from examples
cd server && cp .env.example .env
cd app && cp .env.example .env

/*
*
* Note: You will need to add a MongoDB URL to server/.env before continuing to the next steps
*
*/

// Starting the server and app
cd server && npm run dev
cd app && npm run start