# Project Setup Instructions This README.md file provides instructions for setting up and running various components of the project, including MongoDB, SQS, NotificationService, and TodoService. Please follow the steps below to get started. ## MongoDB/Docker 1. Install MongoDB if you haven't already. 2. Navigate to the `/infra/docker/docker-compose` directory. 3. Run the following command to start MongoDB using Docker Compose: ```shell docker-compose up -d ``` ## NotificationService Before running the NotificationService, ensure that you have Node.js, TypeScript (tsc), and npm installed. Navigate to the /notification-service directory. Run the following command to install the dependencies: ```npm npm install ``` Run the following command to build and run (Dem mode)the project: ```npm npm run dev ``` ## TodoService Before running the TodoService, ensure that you have Node.js, TypeScript (tsc) and npm installed. Navigate to the /todo-service directory. Run the following command to install the dependencies: ```npm npm install ``` Run the following command to build and run (Dem mode)the project: ```npm npm run dev ``` ## Requests Examples are located in request.http - can be run in VSCode with the REST Client extension.