File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -16,17 +16,21 @@ In the `./apps` directory:
16
16
``` plaintext
17
17
.
18
18
├── docker-compose.yml # Docker Compose configuration
19
+ ├── README.md # Project documentation (for docker compose)
19
20
├── .env # Global environment variables (optional)
20
21
├── frontend
21
22
│ ├── Dockerfile # Dockerfile for frontend
22
23
│ └── ... (other frontend files)
24
+ ├── matching-service
25
+ │ ├── Dockerfile # Dockerfile for matching-service
26
+ │ └── ... (other matching-service files)
23
27
├── question-service
24
28
│ ├── Dockerfile # Dockerfile for question-service
25
29
│ └── ... (other question-service files)
26
30
├── user-service
27
31
│ ├── Dockerfile # Dockerfile for user-service
28
32
│ └── ... (other user-service files)
29
- └── README.md # Project documentation (for docker compose)
33
+
30
34
```
31
35
32
36
## Docker Compose Setup
@@ -53,6 +57,8 @@ Once running, you can access:
53
57
- The ** frontend** at http://localhost:3000
54
58
- The ** user service** at http://localhost:3001
55
59
- The ** question service** at http://localhost:8080
60
+ - The ** matching service** at http://localhost:8081
61
+ - The ** redis service** at http://localhost:6379
56
62
57
63
3 . Stopping Services
58
64
You can’t perform that action at this time.
0 commit comments