Skip to content

Latest commit

 

History

History
53 lines (43 loc) · 1.2 KB

File metadata and controls

53 lines (43 loc) · 1.2 KB

loglo

LetsCode

agithub-final.mp4

🖥️ Machine Requirements

  • it should have docker up and running
  • nodjs
  • npm
  • port 5672, 3010 are available
  • pull docker images- node and gcc
docker pull node
docker pull gcc

📌 Setting Up The Project

  • clone the repo and go inside the clone folder
  • Open the terminal and run rabbitmq on port 5672
docker run -p 5672:5672 rabbitmq
  • go to the server directory and install packages
cd server && npm i
  • run the server
node index.js
  • go to the client directory and install packages
cd ../client && npm i
  • run the client server
# the following command will show a link click it
npm run dev

🗒️ Refrence

⭐ Star the Repo