Skip to content

Latest commit

 

History

History
43 lines (29 loc) · 548 Bytes

README.md

File metadata and controls

43 lines (29 loc) · 548 Bytes

Start Docker server

  docker run --name my-redis -d -p 6379:6379 redis

Check if Docker is Running or not

  docker ps

Connect to your docker container

  docker exec -it container_id /bin/bash

Connect to your Redis CLI

  redis-cli

Open two terminals

  • Compile both backend and workers by using
  tsc -b
  • Go to backend folder and start backend by
  node dist/index.js
  • Go to workers folder and start workers by
  node dist/index.js