Skip to content

ERD, 폴더구조

Najeong-Kim edited this page Dec 2, 2021 · 7 revisions

ERD 설계

image

폴더구조

client

client
├── public
│   ├── fonts
│   ├── images
│   └── sounds
└── src
    ├── assets
    ├── components
    │   ├── ChannelHeader
    │   ├── Chat
    │   │   ├── ChatInput
    │   │   ├── ChatList
    │   │   │   └── ChatItem
    │   │   │       ├── AddChatReaction
    │   │   │       ├── ChatReaction
    │   │   │       └── ThreadPreview
    │   │   ├── FileItem
    │   │   ├── Thread
    │   │   │   └── ThreadItem
    │   │   └── UserConnection
    │   ├── Meet
    │   │   ├── MeetChat
    │   │   └── MeetVideo
    │   │       ├── FocusedVideo
    │   │       ├── MeetButton
    │   │       ├── MyVideo
    │   │       └── OtherVideo
    │   ├── Modal
    │   ├── SideBar
    │   │   ├── Channels
    │   │   │   ├── ChannelListItem
    │   │   │   └── MeetingUserList
    │   │   ├── GroupNav
    │   │   ├── GroupSetting
    │   │   └── Profile
    │   └── common
    │       ├── Background
    │       ├── Empty
    │       ├── Icons
    │       ├── RestrictedRoute
    │       └── Toast
    ├── hooks
    ├── pages
    │   ├── Loading
    │   ├── Main
    │   ├── NotFound
    │   ├── SignIn
    │   └── SignUp
    ├── redux
    ├── styles
    ├── types
    └── utils
        ├── api
        ├── constants
        └── test

server

server
└── src
    ├── controllers
    │   └── socket
    ├── db
    │   ├── entities
    │   └── repositories
    ├── loaders
    ├── messages
    ├── routes
    │   └── api
    ├── types
    │   └── socket
    └── utils
        └── validators
Clone this wiki locally