Planner web application using MERN stack (MongoDB, Express, React, NodeJS)
- Download the code
- Create .env file in /server
DATABASE=<your MongoDB connection string URI>
PORT=5500
- Create .env file in /client
REACT_APP_API=http://localhost:5500/api
- Start server side
cd server
npm install
npm start
- Start client side
cd client
npm install
npm start