File tree Expand file tree Collapse file tree 1 file changed +41
-0
lines changed
Expand file tree Collapse file tree 1 file changed +41
-0
lines changed Original file line number Diff line number Diff line change 1+ Scalable-Event-Driven-Ride-Sharing-Platform/
2+ │
3+ ├── src/
4+ │ ├── gateway/
5+ │ ├── matching-service/
6+ │ ├── pricing-service/
7+ │ ├── driver-service/
8+ │ ├── passenger-service/
9+ │ ├── event-bus/
10+ │ │ ├── base.py
11+ │ │ ├── kafka_bus.py
12+ │ │ ├── redis_bus.py
13+ │ │ └── rabbitmq_bus.py
14+ │ └── common/
15+ │ ├── models.py
16+ │ └── utils.py
17+ │
18+ ├── infra/
19+ │ ├── docker/
20+ │ ├── kubernetes/
21+ │ ├── terraform/
22+ │ └── ansible/
23+ │
24+ ├── tests/
25+ │ ├── unit/
26+ │ ├── integration/
27+ │ └── load-tests/
28+ │
29+ ├── docs/
30+ │ ├── architecture.md
31+ │ ├── flowchart.png
32+ │ ├── sequence-diagram.png
33+ │ └── api-spec.md
34+ │
35+ ├── scripts/
36+ │ └── seed_data.py
37+ │
38+ ├── docker-compose.yml
39+ ├── requirements.txt
40+ ├── README.md
41+ └── LICENSE
You can’t perform that action at this time.
0 commit comments