-
Notifications
You must be signed in to change notification settings - Fork 0
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
[Region] 지역 API 작업 완료 #4
Merged
Changes from 20 commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
903fc0d
Feat: Region 엔티티 구성
onetuks 6064c3b
chore: gitignore yaml 파일 무시 설정
onetuks f1c6686
Refactor: 필요 없는 테스트 클래스 제거
onetuks 40aab75
Refactor: Region 엔티티 변경
onetuks 1b32260
Feat: 시도 이용하여 시군구 검색 API 구현
onetuks 7e196e7
refactor: 시군구 검색 시그니처 변경
onetuks 3a6853b
Feat: 시도구군으로 읍면동 조회 API 구현
onetuks f7a9097
Feat: 조회 가능한 시도 조회 API 구현
onetuks 3fdc275
Merge branch 'develop' into region
onetuks 7da4746
Chore: 머지된 코드 리포매팅
onetuks ac6a085
Chore: 메인 패키지 변경 대응
onetuks a4bcce5
Test: 스프링 세큐리티 테스트 대응
onetuks a72f617
Feat: 지역 정보로 위경도 값 조회 기능 구현
onetuks 05cc19f
Fix: 컬럼명 수정
onetuks 7439616
Chore: CI 시 설정 문제 해결
onetuks 67e0c83
Refactor: 컨트롤러 produces 속성 메소드 레벨로 이동
onetuks d95aef2
Feat: Region 테스트 가능하도록 수정
onetuks 665b4f9
Chore: 테스트 불통 대응
onetuks 4cb39da
Chore: CI 설정 오류 수정
onetuks a93c68a
Chore: CI 설정 오류 수정
onetuks 02d64e1
Refactor: 지역 접두사 정보를 지역 엔티티로 이전
onetuks 80e2ec8
Feat: 지역 예외 추가
onetuks fbab695
Feat: 시도, 시군구, 읍면동 유효성 어노테이션 구현
onetuks File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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,39 +1,50 @@ | ||
name: Build and Deploy to EC2 | ||
|
||
on: | ||
push: | ||
branches: [ "develop" ] | ||
pull_request: | ||
branches: [ "develop" ] | ||
|
||
workflow_dispatch: | ||
|
||
env: | ||
BUCKET_NAME: team09-cicd-bucket | ||
PROJECT_NAME: studay | ||
DEPLOYMENT_GROUP_NAME: studay_cicd | ||
CODE_DEPLOY_APP_NAME: studay_cicd | ||
|
||
jobs: | ||
# 작업의 이름 | ||
build_and_test: | ||
# GitHub Actions 러너의 운영 체제 | ||
runs-on: ubuntu-latest | ||
|
||
services: | ||
mysql: | ||
image: mysql:8.0.21 | ||
env: | ||
MYSQL_ROOT_PASSWORD: password | ||
MYSQL_DATABASE: test | ||
ports: | ||
- 3306:3306 | ||
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=10 | ||
redis: | ||
image: redis | ||
ports: | ||
- 6379:6379 | ||
options: --entrypoint redis-server | ||
# 순차적으로 실행될 단계들을 정의하는 섹션 | ||
steps: | ||
- name: Checkout code | ||
uses: actions/[email protected] | ||
|
||
- name: Set up JDK 17 | ||
uses: actions/[email protected] | ||
with: | ||
java-version: '17' | ||
distribution: 'corretto' | ||
|
||
- name: Grant execute permission for gradlew | ||
run: chmod +x ./gradlew | ||
|
||
- name: Create application.yml | ||
run: | | ||
mkdir -p src/main/resources | ||
echo "${{ secrets.APPLICATION_YML_CONTENT }}" > src/main/resources/application.yml | ||
echo "${{ secrets.APPLICATION_DEV_YML_CONTENT }}" > src/main/resources/application-dev.yml | ||
echo "${{ secrets.APPLICATION_OAUTH_YML_CONTENT }}" > src/main/resources/application-oauth.yml | ||
- name: Build with gradle | ||
run: ./gradlew build | ||
|
||
run: ./gradlew build |
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
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
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
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
5 changes: 2 additions & 3 deletions
5
src/main/java/org/guzzing/studayserver/domain/auth/client/ClientStrategy.java
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
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
4 changes: 2 additions & 2 deletions
4
src/main/java/org/guzzing/studayserver/domain/auth/config/SecurityConfig.java
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
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
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
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
2 changes: 1 addition & 1 deletion
2
src/main/java/org/guzzing/studayserver/domain/auth/exception/TokenValidFailedException.java
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
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
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
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
헉.. 저도 설정했는데 나중에 conflict 처리해야겠군요 ㅠㅠ
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ㅠㅠ 컨플릭트 싫은뎅 ㅠㅠ