-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #122 from kakao-tech-campus-2nd-step3/Evaluation
update README
Showing
1 changed file
with
75 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,75 @@ | ||
# Team28_BE | ||
28조 백엔드 | ||
# DevCard | ||
|
||
DevCard는 개발자를 위한 디지털 명함 서비스입니다. 사용자들은 자신의 프로필, GitHub 레포지토리, 커밋 활동 등을 포함한 디지털 명함을 생성하고 공유할 수 있습니다. | ||
|
||
## 목차 | ||
|
||
- [프로젝트 소개](#프로젝트-소개) | ||
- [기술 스택](#기술-스택) | ||
- [설치 및 실행](#설치-및-실행) | ||
- [구성원](#구성원) | ||
|
||
## 프로젝트 소개 | ||
|
||
DevCard는 개발자들이 자신의 정보를 효율적으로 공유할 수 있도록 돕는 서비스입니다. GitHub OAuth2 인증을 통해 간편하게 로그인하고, 자신의 GitHub 활동 내역을 명함에 포함시킬 수 있습니다. | ||
|
||
## 기술 스택 | ||
|
||
- **백엔드**: Java 17, Spring Boot 3.1.2 | ||
- **빌드 도구**: Gradle | ||
- **데이터베이스**: MySQL 8 | ||
- **ORM**: Spring Data JPA (Hibernate) | ||
- **테스트**: JUnit 5, Mockito | ||
- **CI/CD**: GitHub Actions, AWS CodeDeploy | ||
- **인증**: Spring Security, OAuth2 (GitHub) | ||
- **프론트엔드**: HTML, CSS, JavaScript, jQuery | ||
|
||
## 설치 및 실행 | ||
|
||
### 전제 조건 | ||
|
||
- Java 17 이상 | ||
- Gradle 7.x 이상 | ||
- MySQL 8.x | ||
- Git | ||
|
||
### 클론 및 환경 설정 | ||
|
||
```bash | ||
# 레포지토리 클론 | ||
git clone https://github.com/your-username/DevCard.git | ||
cd DevCard | ||
|
||
# 필요한 환경 변수 설정 (.env 파일 또는 시스템 환경 변수) | ||
# 예시로 .env 파일을 사용하는 경우 | ||
cp .env.example .env | ||
``` | ||
### 배포 링크 | ||
http://devcard.kro.kr:8080/login | ||
http://3.34.144.148:8080/login | ||
|
||
### 최신 ERD | ||
![image](https://github.com/user-attachments/assets/34b7055e-b5bf-4a3e-99da-f1dc78f84645) | ||
|
||
### 주요 기능 | ||
1. 명함 관리 | ||
- 사용자 개인의 명함 생성, 수정, 삭제. | ||
- 명함을 그룹화하여 체계적으로 관리. | ||
|
||
2. 그룹 관리 | ||
- 명함을 그룹으로 분류하여 관리. | ||
- 그룹에 명함 추가 및 제거. | ||
- 그룹 삭제 시 관련된 채팅방도 자동으로 삭제. | ||
|
||
3. 채팅 기능 | ||
- 명함 교환 후 양쪽이 서로를 추가한 경우에만 채팅방 생성. | ||
- WebSocket 기반의 실시간 채팅 지원. | ||
- 채팅 메시지 저장 및 관리. | ||
|
||
### 구성원 | ||
|
||
- 팀장 : 이동현 (BE - 명함 기능 구현) | ||
- 팀원 : 박상우 (BE - 채팅 기능 구현) | ||
- 팀원 : 김해경 (BE - 명함 기능 구현) | ||
- 팀원 : 이경빈 (BE - 채팅 기능 구현) | ||
- 팀원 : 박서현 (BE - 인증 기능 구현) |