Skip to content

Commit

Permalink
Merge pull request #75 from Hanjuri/feature/#49
Browse files Browse the repository at this point in the history
Feature: 채팅방 웹소켓 연결
  • Loading branch information
Hanjuri authored Sep 2, 2024
2 parents 008d14d + 6ab36ca commit 418257a
Show file tree
Hide file tree
Showing 18 changed files with 841 additions and 593 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,7 @@ yarn-debug.log*
yarn-error.log*

node_modules
/dist
/dist

.env
.env*
22 changes: 22 additions & 0 deletions docker-compose-chat-test-db.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
version: '3.8'

services:
mongodb:
image: mongo
container_name: mongodb
ports:
- "27017:27017"
networks:
- testNet

redis:
image: redis
container_name: redis
ports:
- "6379:6379"
networks:
- testNet

networks:
testNet:
driver: bridge
Loading

0 comments on commit 418257a

Please sign in to comment.