Skip to content

ingluisfelipemunoz/ms-aws

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Microservices Documentation

Producer-A Microservice

Description

The producer-a microservice is responsible for producing messages to an AWS SQS queue. It is built using Node.js and NestJS.

Prerequisites

  • Docker
  • Docker Compose

Running the Service

  1. Navigate to the producer-a directory:

    cd producer-a
  2. Build and start the service using Docker Compose:

    docker-compose up --build
  3. The service will be available at http://localhost:3016.

Environment Variables

  • REVIEW THE .env.example FILE TO CHECK THE CONFIG THAT YOU NEED TO SETOP

Consumer-B Microservice

Description

The consumer-b microservice is responsible for consuming messages from an AWS SQS queue. It is built using Node.js and NestJS.

Prerequisites

  • Docker
  • Docker Compose

Running the Service

  1. Navigate to the consumer-b directory:

    cd consumer-b
  2. Build and start the service using Docker Compose:

    docker-compose up --build
  3. The service will be available at http://localhost:3017.

Environment Variables

  • REVIEW THE .env.example FILE TO CHECK THE CONFIG THAT YOU NEED TO SETUP

Docker Compose Configuration

version: '3.7'
services:
  service-b:
    build: .
    ports:
      - "3017:3017"

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published