Skip to content

Gustavohsdp/nodejs-rabbitmq

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 

Repository files navigation

RabbitMQ

Application in Nodejs using RabbitMQ.

🚀 Techs & Tools

TypeScript

RabbitMQ

Docker

Setup

Create an .env file:

$ cp .env.example .env

Edit this file and set the values for the requested environment variables, example:

# RabbitMQ
RABBITMQ_URL="amqp://user:password@localhost:5672"

Run app

$ npm install
$ docker-compose up -d
$ npm run start:dev