Skip to content

Commit d6c43f5

Browse files
authored
Create File Structure
1 parent 523e5b8 commit d6c43f5

File tree

1 file changed

+41
-0
lines changed

1 file changed

+41
-0
lines changed

File Structure

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
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

0 commit comments

Comments
 (0)