Skip to content
This repository was archived by the owner on Sep 24, 2025. It is now read-only.

Commit a5f90aa

Browse files
author
trzysiek
committed
fix naming
1 parent 69175aa commit a5f90aa

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
- **Product Service** (Port 3001) - Product catalog and inventory
66
- **Order Service** (Port 3002) - Orders, cart, and user auth
77
- **Frontend Service** (Port 3003) - React web interface
8-
- **Random Service** (Port 5002) - Test service
98
- **Health Monitor** (Port 5000) - Service health dashboard
109
- **Grafana** (Port 3000) - Monitoring dashboards
1110
- **Prometheus** (Port 9090) - Metrics collection
1211
- **Loki** (Port 3100) - Log aggregation
12+
- **Random Service** (Port 5002) - Random Test service. Can be e.g. safely stopped to see changes in monitoring.
1313

1414
## Quick Start
1515

@@ -32,6 +32,6 @@ docker-compose down
3232
- **Frontend**: http://localhost:3003
3333
- **Health Monitor**: http://localhost:5000
3434
- **Grafana**: http://localhost:3000
35-
- **Random Service**: http://localhost:5002
35+
- **Random Unnecessary Service For Testing**: http://localhost:5002
3636

37-
Test users: `[email protected]` / `customer123`
37+
Test user for Frontend: `[email protected]` / `customer123`

docker-compose.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,8 @@ services:
7171
- VITE_ORDER_SERVICE_URL=http://localhost:3002
7272
- VITE_FRONTEND_URL=http://localhost:3003
7373

74-
random-service:
75-
image: random-service:latest
74+
random-unnecessary-service-for-testing:
75+
image: random-unnecessary-service-for-testing:latest
7676
ports:
7777
- "5002:5002"
7878
networks:
@@ -89,7 +89,7 @@ services:
8989
- product-service
9090
- order-service
9191
- frontend-service
92-
- random-service
92+
- random-unnecessary-service-for-testing
9393
environment:
9494
- CHECK_INTERVAL=10 # Check every 10 seconds
9595
- TIMEOUT=5 # 5 second timeout for health checks

0 commit comments

Comments
 (0)