Skip to content
This repository has been archived by the owner on Nov 13, 2022. It is now read-only.

Latest commit

 

History

History
53 lines (45 loc) · 1.27 KB

README.md

File metadata and controls

53 lines (45 loc) · 1.27 KB

Planner

Planner web application using MERN stack (MongoDB, Express, React, NodeJS)

How to use the app

Home page

  • View planner and tasks in each days

  • Type a number to view specific days.


  • Click the arrow to view the planner for the previous or next 7 days


Search page

  • Type a word to view days that have relevant tasks


Edit page

  • Edit task in specific day and time

Admin page

  • Click to delete all planner data

How to run the app

  1. Download the code
  2. Create .env file in /server
DATABASE=<your MongoDB connection string URI>
PORT=5500
  1. Create .env file in /client
REACT_APP_API=http://localhost:5500/api
  1. Start server side
cd server
npm install
npm start
  1. Start client side
cd client
npm install
npm start