Chat api that capable of sending and receiving text messages using socket communication and message queues, with an emphasis on real-time interaction and scalability
$ yarn install
# development
$ yarn run start
# watch mode
$ yarn run start:dev
# production mode
$ yarn run start:prod
or you can use docker-compose to run this project
# build image
docker-compose build --no-cache && docker-compose up
# unit tests
$ yarn run test
# e2e tests
$ yarn run test:e2e
# test coverage
$ yarn run test:cov