프론트엔드
frontEnd/
├── src/
│ ├── pages/
| | ├── auth/
| | ├── info/
| | ├── movie/
| | ├── mypage/
| | ├── LandingPage.tsx
| | ├── BoardingPage.tsx
| | ├── ErrorPage.tsx
| | └── MainPage.tsx
│ ├── components/
│ ├── assets/
│ ├── hooks/
│ ├── apis/
│ ├── store/
│ ├── utils/
│ ├── App.tsx
│ ├── main.tsx
│ └── index.css
├── public/
├── package.json
├── type.ts
├── index.css
├── App.tsx
├── App.css
├── .env
├── index.html
├── node_modules
├── .gitignore
├── tailwind.config.js
└── vite.config.ts
백엔드
service명/
├── src/
│ ├── main/
| | ├── java/
| | | └── com/
| | | └── flicker/
| | | └── 애그리게이트명
| | | ├── presentation/
| | | ├── application/
| | | ├── domain/
| | | | ├──entity/
| | | | └──vo/
| | | ├── infrastructure/
| | | └── dto/
| | └── resources/
| | ├── application.properties
| | └── application-local.properties
│ └── test/
| └── java/
├── build/
└── build.gradle