Skip to content

EFREI-M1-Dev/RabbitMQ-Project-FLMP

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

66 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

RabbitMQ Project

Run with Docker

  docker-compose up --build -d

Go to: http://localhost:3001

Usage: Log in with guest:guest or create a user, then open the MSN application (double click) to chat with other people. To log out, simply click on the Start menu.

Run for development

Back

Go to the backend directory

  cd back

Install dependencies

  npm ci

Start the RabbitMQ server

  docker run -it --rm --name rabbitmq -p 5672:5672 -p 15672:15672 rabbitmq:3.13-management

Start the server

  npm run start

Front

Go to the frontend directory

  cd front

Install dependencies

  npm ci

Start the server

  npm run dev

RabbitMQ

Link to Dashboard

username password
guest guest

API Reference

URL: http://localhost:3000

Register a user

  POST /register
Parameter Type Description
username string Required. Username
password string Required. Password

Check login

  POST /#
Parameter Type Description
username string Required. Username
password string Required. Password