-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathproject_structure.txt
More file actions
82 lines (82 loc) · 2.73 KB
/
project_structure.txt
File metadata and controls
82 lines (82 loc) · 2.73 KB
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
navio/
├── .github/
│ └── workflows/
│ └── ci.yml
├── backend/
│ ├── .mvn/
│ │ └── wrapper/
│ │ └── maven-wrapper.properties
│ ├── src/
│ │ ├── main/
│ │ │ ├── java/
│ │ │ │ └── com/
│ │ │ │ └── navio/
│ │ │ │ ├── core/
│ │ │ │ │ ├── application/
│ │ │ │ │ └── domain/
│ │ │ │ ├── infrastructure/
│ │ │ │ ├── presentation/
│ │ │ │ └── BackendApplication.java
│ │ │ └── resources/
│ │ │ └── application.properties
│ │ └── test/
│ │ └── java/
│ │ └── com/
│ │ └── navio/
│ ├── .gitattributes
│ ├── mvnw
│ ├── mvnw.cmd
│ └── pom.xml
├── docker/
│ ├── .dockerignore
│ ├── docker-compose.yml
│ └── Dockerfile
├── frontend/
│ ├── public/
│ │ └── favicon.ico
│ ├── src/
│ │ ├── components/
│ │ │ ├── DiscoverGrid.tsx
│ │ │ ├── DynamicIsland.tsx
│ │ │ ├── LogoutModal.tsx
│ │ │ ├── NotificationButton.tsx
│ │ │ ├── ProfileSettingsModal.tsx
│ │ │ ├── SettingsPopup.tsx
│ │ │ ├── ShareProfileModal.tsx
│ │ │ ├── Sidebar.tsx
│ │ │ ├── TripCard.tsx
│ │ │ └── WorldMap.tsx
│ │ ├── contexts/
│ │ │ └── ModalContext.tsx
│ │ ├── images/
│ │ │ └── navio_logo.png
│ │ ├── pages/
│ │ │ ├── Countries.tsx
│ │ │ ├── Discover.tsx
│ │ │ ├── MyPosts.tsx
│ │ │ ├── Trips.tsx
│ │ │ └── You.tsx
│ │ ├── App.tsx
│ │ ├── index.css
│ │ ├── main.tsx
│ │ └── vite-env.d.ts
│ ├── eslint.config.js
│ ├── index.html
│ ├── package-lock.json
│ ├── package.json
│ ├── tsconfig.app.json
│ ├── tsconfig.json
│ ├── tsconfig.node.json
│ └── vite.config.ts
├── kubernetes/
│ ├── deployment.yaml
│ └── namespace.yaml
├── nginx/
│ └── nginx.conf
├── scripts/
│ └── deploy.sh
├── .env.example
├── .gitignore
├── LICENSE
├── project_structure.txt
└── README.md