-
Notifications
You must be signed in to change notification settings - Fork 4
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 #14 from kakao-tech-campus-2nd-step3/Master
14조 코드리뷰 1회차
- Loading branch information
Showing
26 changed files
with
1,029 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
--- | ||
name: 기능 요청 이슈 템플릿 | ||
about: 기능 요청 이슈 템플릿입니다. | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
Add a title | ||
관련 이슈 제목 작성 ex. 인프라 초기 세팅 | ||
--------------------------------------------------------------- | ||
## Description | ||
- 어떤 이슈인지 설명하는 란 입니다. | ||
## To Do | ||
- [ ] 프론트 CI 속도 개선 | ||
- [ ] 백엔드 CD gradle 파일 캐시 개선 | ||
- [ ] AI는 모델 경량화 개선 작업 | ||
|
||
## ETC | ||
- 행복하다 |
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 |
---|---|---|
@@ -0,0 +1,36 @@ | ||
--- | ||
name: 버그 리포트 이슈 템플릿 | ||
about: 버그 리포트 이슈 템플릿입니다. | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
## 🐛 버그 리포트 (Bug Report) | ||
|
||
### 📋 개요 (Summary) | ||
발생한 버그에 대한 간략한 설명을 적어주세요. | ||
|
||
### 🔍 재현 절차 (Steps to Reproduce) | ||
버그를 재현할 수 있는 방법을 단계별로 설명해주세요: | ||
1. 첫 번째 단계 | ||
2. 두 번째 단계 | ||
3. ... | ||
|
||
### 🖥️ 예상 동작 (Expected Behavior) | ||
정상적으로 동작했을 때 어떤 결과가 나와야 하나요? | ||
|
||
### ❌ 실제 동작 (Actual Behavior) | ||
버그로 인해 실제로 발생한 결과를 적어주세요. | ||
|
||
### 🖼️ 스크린샷 (Screenshots) | ||
문제를 보여줄 수 있는 스크린샷이 있으면 첨부해주세요. | ||
|
||
### 💻 환경 (Environment) | ||
- OS: [e.g., Windows 10] | ||
- 브라우저: [e.g., Chrome 91] | ||
- 기타: [e.g., Node.js 14] | ||
|
||
### 🔗 관련된 이슈들 (Related Issues) | ||
- 이 버그와 관련된 이슈 번호가 있다면 적어주세요. (예: `#123`) |
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
pr제목 -> 관련 이슈 #4 | ||
|
||
📌 관련 이슈 | ||
--- | ||
프론트 CI 속도 개선 | ||
|
||
✨ PR 내용 | ||
--- | ||
프론트 CI 속도 개선했음! |
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 |
---|---|---|
@@ -0,0 +1,37 @@ | ||
HELP.md | ||
.gradle | ||
build/ | ||
!gradle/wrapper/gradle-wrapper.jar | ||
!**/src/main/**/build/ | ||
!**/src/test/**/build/ | ||
|
||
### STS ### | ||
.apt_generated | ||
.classpath | ||
.factorypath | ||
.project | ||
.settings | ||
.springBeans | ||
.sts4-cache | ||
bin/ | ||
!**/src/main/**/bin/ | ||
!**/src/test/**/bin/ | ||
|
||
### IntelliJ IDEA ### | ||
.idea | ||
*.iws | ||
*.iml | ||
*.ipr | ||
out/ | ||
!**/src/main/**/out/ | ||
!**/src/test/**/out/ | ||
|
||
### NetBeans ### | ||
/nbproject/private/ | ||
/nbbuild/ | ||
/dist/ | ||
/nbdist/ | ||
/.nb-gradle/ | ||
|
||
### VS Code ### | ||
.vscode/ |
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 |
---|---|---|
@@ -0,0 +1,66 @@ | ||
plugins { | ||
id 'java' | ||
id 'org.springframework.boot' version '3.3.3' | ||
id 'io.spring.dependency-management' version '1.1.6' | ||
id "com.diffplug.spotless" version '6.25.0' | ||
} | ||
|
||
group = 'com.ordertogether' | ||
version = '0.0.1-SNAPSHOT' | ||
|
||
java { | ||
toolchain { | ||
languageVersion = JavaLanguageVersion.of(21) | ||
} | ||
} | ||
|
||
repositories { | ||
mavenCentral() | ||
} | ||
|
||
apply { | ||
from('./tasks/update-git-hooks.gradle') | ||
} | ||
|
||
dependencies { | ||
/** spring boot starter */ | ||
implementation 'org.springframework.boot:spring-boot-starter-data-jpa' | ||
implementation 'org.springframework.boot:spring-boot-starter-security' | ||
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf' | ||
implementation 'org.springframework.boot:spring-boot-starter-web' | ||
|
||
testImplementation 'org.springframework.boot:spring-boot-starter-test' | ||
testImplementation 'org.springframework.security:spring-security-test' | ||
|
||
/** thymeleaf and spring security integration */ | ||
implementation 'org.thymeleaf.extras:thymeleaf-extras-springsecurity6' | ||
|
||
/** lombok */ | ||
compileOnly 'org.projectlombok:lombok' | ||
annotationProcessor 'org.projectlombok:lombok' | ||
testCompileOnly 'org.projectlombok:lombok' | ||
testAnnotationProcessor 'org.projectlombok:lombok' | ||
|
||
developmentOnly 'org.springframework.boot:spring-boot-devtools' | ||
|
||
runtimeOnly 'com.h2database:h2' | ||
runtimeOnly 'com.mysql:mysql-connector-j' | ||
|
||
testRuntimeOnly 'org.junit.platform:junit-platform-launcher' | ||
} | ||
|
||
spotless { | ||
java { | ||
importOrder() | ||
indentWithTabs(2) | ||
indentWithSpaces(4) | ||
removeUnusedImports() | ||
googleJavaFormat() | ||
trimTrailingWhitespace() | ||
endWithNewline() | ||
} | ||
} | ||
|
||
tasks.named('test') { | ||
useJUnitPlatform() | ||
} |
Binary file not shown.
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.1-bin.zip | ||
networkTimeout=10000 | ||
validateDistributionUrl=true | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
Oops, something went wrong.