forked from dhairyagothi/StationGuide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
repo_structure.txt
145 lines (145 loc) · 5.05 KB
/
repo_structure.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
├── CODE_OF_CONDUCT.md
├── CONTRIBUTING.md
├── LICENSE
├── Learn.md
├── README.md
├── SECURITY.md
├── StationGuide.md
├── StationGuideFigma.md
├── backend/
│ ├── config/
│ │ ├── config.js
│ │ └── dbConnection.js
│ ├── controllers/
│ │ ├── StationController.js
│ │ ├── WheelchairController.js
│ │ ├── authController.js
│ │ ├── cloakroomController.js
│ │ ├── coolieController.js
│ │ ├── stationBookingsController.js
│ │ └── stationsController.js
│ ├── dataset/
│ │ └── stations.js
│ ├── dockerfile
│ ├── index.js
│ ├── middleware/
│ │ └── auth.middleware.js
│ ├── models/
│ │ ├── CloakroomBooking.js
│ │ ├── CoolieBooking.js
│ │ ├── Stations.js
│ │ ├── User.js
│ │ └── WheelchairBooking.js
│ ├── package-lock.json
│ ├── package.json
│ ├── public/
│ │ └── test.html
│ ├── routes/
│ │ ├── authRoutes.js
│ │ └── stationRoutes.js
│ └── utils/
│ ├── ApiError.js
│ ├── asyncHandler.js
│ └── authFunctions.js
├── docker-compose.yml
├── frontend/
│ ├── README.md
│ ├── dockerfile
│ ├── eslint.config.js
│ ├── index.html
│ ├── package-lock.json
│ ├── package.json
│ ├── postcss.config.js
│ ├── public/
│ │ └── vite.svg
│ ├── src/
│ │ ├── App.css
│ │ ├── App.jsx
│ │ ├── Pages/
│ │ │ ├── 3Dmaps.jsx
│ │ │ ├── AboutUs.jsx
│ │ │ ├── ContactUs.jsx
│ │ │ ├── Emergency.jsx
│ │ │ ├── ForaFriend.jsx
│ │ │ ├── HelpandSupport.jsx
│ │ │ ├── Herosection.css
│ │ │ ├── Herosection.jsx
│ │ │ ├── LoginPage.jsx
│ │ │ ├── Payment.jsx
│ │ │ ├── Register.jsx
│ │ │ ├── booking.jsx
│ │ │ ├── contributor.jsx
│ │ │ ├── hamburger.css
│ │ │ ├── hamburger.jsx
│ │ │ ├── navigation.jsx
│ │ │ ├── notification.jsx
│ │ │ ├── schedule.jsx
│ │ │ └── stations.jsx
│ │ ├── assets/
│ │ │ ├── bg.png
│ │ │ ├── bgmobile.png
│ │ │ ├── hero.png
│ │ │ ├── mixbg.png
│ │ │ ├── stationsaarthi.svg
│ │ │ └── svg/
│ │ │ ├── 3dmap.svg
│ │ │ ├── backicon.svg
│ │ │ ├── bookings.svg
│ │ │ ├── chatbot.svg
│ │ │ ├── contributor.svg
│ │ │ ├── navigation.svg
│ │ │ ├── notification.svg
│ │ │ ├── schedule.svg
│ │ │ ├── search.svg
│ │ │ └── station.svg
│ │ ├── components/
│ │ │ ├── Bookingform.jsx
│ │ │ ├── MapComponent.jsx
│ │ │ ├── Settings.jsx
│ │ │ ├── about.css
│ │ │ ├── about.jsx
│ │ │ ├── chatbot.css
│ │ │ ├── chatbot.jsx
│ │ │ ├── footer.jsx
│ │ │ ├── help.jsx
│ │ │ ├── navbar.jsx
│ │ │ ├── scrollToTop.css
│ │ │ └── scrollToTop.jsx
│ │ ├── dataset/
│ │ │ └── stations.js
│ │ ├── index.css
│ │ ├── main.jsx
│ │ └── validations/
│ │ └── validation.js
│ ├── tailwind.config.js
│ └── vite.config.js
├── notification_system/
│ ├── backend/
│ │ ├── config/
│ │ │ └── db.js
│ │ ├── controllers/
│ │ │ └── notificationController.js
│ │ ├── models/
│ │ │ ├── Notification.js
│ │ │ └── User.js
│ │ ├── package.json
│ │ ├── routes/
│ │ │ ├── notificationRoutes.js
│ │ │ └── userRoutes.js
│ │ ├── server.js
│ │ └── services/
│ │ └── emailServices.js
│ └── frontend/
│ ├── package.json
│ ├── public/
│ │ └── service-worker.js
│ └── src/
│ ├── app.js
│ ├── components/
│ │ ├── NotificationCentre.js
│ │ └── NotificationSettings.js
│ └── index.js
├── package-lock.json
├── package.json
├── repo_structure.txt
└── tailwind.config.js