Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

YEL-30 [update] update README.md #35

Merged
merged 4 commits into from
Jul 12, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
84 changes: 84 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,86 @@
# YELLO-Server

## 💡YELL:O Server Developers

| 박현정 | 이의제 | 권세훈 |
| :---------:|:----------:|:----------:|
|<img width="300" alt="image" src="https://user-images.githubusercontent.com/81394850/210358708-f6139bed-c2b6-43d9-8dc6-525ac8c68e9f.jpg"> | <img width="300" alt="image" src="https://github.com/team-yello/YELLO-Server/assets/81394850/3b031ac2-5688-48a6-aff1-94fcf5cbad22"> | <img width="300" alt="image" src="https://github.com/team-yello/YELLO-Server/assets/81394850/19f133ca-5a79-4ac7-b07e-b6bc4250c867"> |
| [hyeonjeongs](https://github.com/hyeonjeongs) | [euije](https://github.com/euije) | [devkwonsehoon](https://github.com/devkwonsehoon) |
| :---------:|:----------:|:----------:|
| 프로젝트 세팅, DB 설계, Entity 개발, 투표, 추천친구 API 구현 | DB 설계, spring security, 소셜 로그인, 온보딩 API 구현 | DB 설계, Github Action과 Code Deploy를 이용하여 배포 자동화 구성, 내 프로필 API 개발 |


## ⭐ Stack
<img src="https://img.shields.io/badge/Spring-6DB33F?style=flat-square&logo=Spring&logoColor=white"/>
<img src="https://img.shields.io/badge/SpringBoot-6DB33F?style=flat-square&logo=Spring Boot&logoColor=white"/>
<img src="https://img.shields.io/badge/Java-137CBD?style=flat-square&logo=Java&logoColor=white"/>
<img src="https://img.shields.io/badge/MySQL-4479A1?style=flat-square&logo=MySQL&logoColor=white"/>

## 📌 Server architecture
<img width="630" alt="image" src="https://github.com/team-yello/YELLO-Server/assets/81394850/6eca1ad2-9106-4e7c-85d6-a5ac9cdf675e">
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

잘그리셨네요



## ☘️Project Foldering

```
.
├── domain
│   ├── cooldown
│   │   └── entity
│   │   └── response
│   │   ├── controller
│   │   ├── dto
│   │   ├── exception
│   │   └── service
│   ├── friend
│   │   └── entity
│   │   └── response
│   │   ├── controller
│   │   ├── dto
│   │   ├── exception
│   │   └── service
│   ├── group
│   │   └── entity
│   │   └── response
│   │   ├── controller
│   │   ├── dto
│   │   ├── exception
│   │   └── service
│   ├── keyword
│   │   └── entity
│   │   └── response
│   │   ├── controller
│   │   ├── dto
│   │   ├── exception
│   │   └── service
│   ├── question
│   │   └── entity
│   │   └── response
│   │   ├── controller
│   │   ├── dto
│   │   ├── exception
│   │   └── service
│   ├── user
│   │   └── entity
│   │   └── response
│   │   ├── controller
│   │   ├── dto
│   │   ├── exception
│   │   └── service
│   ├── vote
│   │   └── entity
│   │   └── response
│   │   ├── controller
│   │   ├── dto
│   │   ├── exception
│   │   └── service
├── global
│   ├── common
│   ├── comfiguration
│   ├── exception
│   └── HealthCheckController
└── ServerApplication
```

<br>