This is a MERN stack app where users can create, read, update and delete care schedules.
Below are run instructions for this app
Clone the project repository
Build the docker images for both the client and server:
cd client && sudo docker build -t care-scheduling-dashboard-client .
cd ../server && sudo docker build -t care-scheduling-dashboard-server .
Start the docker containers:
sudo docker compose up
Access the application in your browser by visiting http://localhost:5173.
Clone the project repository
Install the required npm packages for both the client and server:
cd client && npm install
cd ../server && npm install
Start the server:
cd server && npm run dev
Start the client:
cd ../client && npm run dev
Access the application in your browser by visiting http://localhost:5173.