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

[feat] 데이터베이스를 MySQL로 이전 #256

Merged
merged 4 commits into from
Jan 17, 2025
Merged
Show file tree
Hide file tree
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
19 changes: 9 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
# 👋 ABOUT HANKKI

<div align="center">
<img witdth= "200px" src=https://github.com/Team-Hankki/hankki-server/assets/109809242/ce261e93-5fde-48dc-a4bc-12a17fc6f91e">

**`WHAT?`** 대학교를 중심으로 **8000원 이하의 메뉴를 가진 식당**을 제공하는 프로덕트
<img witdth= "200px" src=https://github.com/Team-Hankki/hankki-server/assets/109809242/ce261e93-5fde-48dc-a4bc-12a17fc6f91e"/>

**`HOW?`** 서울 내의 대학 묶음 9-10개를 중심으로 50개씩 약 500개의 식당을 모아 릴리즈하고, 추후 **유저참여형**으로 운영할 계획
**`WHAT?`** 대학교를 중심으로 **8000원 이하의 메뉴를 가진 식당**을 제공하는 프로덕트

**`HOW?`** 서울 내의 대학 묶음 9-10개를 중심으로 50개씩 약 500개의 식당을 모아 릴리즈하고, 추후 **유저참여형**으로 운영할 계획

**`WHY?`** 치솟는 물가에 밥 한끼 먹기도 부담되는 요즘, 저렴한 식당을 공유하며 **함께** **잘 먹고 잘 살기 위해서!**

Expand All @@ -19,21 +19,20 @@
| [👑박재연👑](https://github.com/Parkjyun) | [🌱김가연🌱](https://github.com/kgy1008) | [🌱박서진🌱](https://github.com/PicturePark1101)|
|--------|------- |---------- |
| <img width="600px" src= "https://github.com/Team-Hankki/hankki-server/assets/109809242/2276da80-d520-4548-8064-8011fb9e92a7"> | <img width="600px" src="https://github.com/Team-Hankki/hankki-server/assets/109809242/cb7addf0-a6ca-41f4-b2cc-7cb1a8a480d3"> | <img width="600px" src="https://github.com/Team-Hankki/hankki-server/assets/109809242/7d62d5c9-9b8d-4e43-a118-0ad4e69fb564"> |
| ✔️CI/CD 구축<br>✔️DB 설계 <br>✔️홈화면 API <br>✔️제보 API | ✔️소셜로그인(KAKAO, APPLE) <br> ✔️식당 API <br> ✔️Discord 알림 구현| ✔️마이페이지 API <br> ✔️족보 API |

# ⚒️Stack
# ⚒️Stack

<div align = "center">
<img src="https://firebasestorage.googleapis.com/v0/b/stackticon-81399.appspot.com/o/images%2F1720497281719?alt=media&token=f40aa73a-b50e-43cc-bd2a-a49e3d62086d)](https://github.com/msdio/stackticon">
<img src="https://firebasestorage.googleapis.com/v0/b/stackticon-81399.appspot.com/o/images%2F1737068021699?alt=media&token=b8c8583c-65b0-4111-b9d5-7dcba0c3e065)](https://github.com/msdio/stackticon">
</div>


# 🏗️Architecture
![한끼아키텍쳐](https://github.com/user-attachments/assets/4c538dd1-5734-42a9-afa7-36bd9222b698)
![한끼아키텍쳐](https://github.com/user-attachments/assets/e2c71966-893a-478e-bb68-26f66ecd17de)

<br><br>
# 📍ERD
![hankki-DB](https://github.com/user-attachments/assets/bbae0174-e6c7-44e9-a5a8-ca0feb3a25c5)
![hankki-DB](https://github.com/user-attachments/assets/03b5a06f-e938-4f6b-90d4-68c383962c8d)

<br><br>
# 📜 Covention
Expand Down Expand Up @@ -62,7 +61,7 @@
### Branch Naming
`<Prefix>/<Issue_Number>`

### Commit Message
### Commit Message
`[<Prefix>] <Description>`

### Pull Request
Expand Down
2 changes: 2 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ dependencies {
// Database
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
runtimeOnly 'org.postgresql:postgresql'
runtimeOnly 'com.h2database:h2'
runtimeOnly 'com.mysql:mysql-connector-j'

// Health Check
implementation 'org.springframework.boot:spring-boot-starter-actuator'
Expand Down
2 changes: 1 addition & 1 deletion server-yml