Shopping list app built with the MERN stack along with Redux Toolkit for state management and Chakra-UI.
https://polar-harbor-77503.herokuapp.com/
Create a config.env file in the config folder and add the following
NODE_ENV = development
PORT = 5000
MONGODB_URI = your mongodb uri
jwtSecret = 'abc123'
# Install dependencies for server
npm install
# Install dependencies for client
npm run client-install
# Run the client & server with concurrently
npm run dev
# Run the Express server only
npm run server
# Run the React client only
npm run client
# Server runs on http://localhost:5000 and client on http://localhost:3000