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

[Region] 지역 API 작업 완료 #4

Merged
merged 23 commits into from
Nov 2, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
903fc0d
Feat: Region 엔티티 구성
onetuks Oct 31, 2023
6064c3b
chore: gitignore yaml 파일 무시 설정
onetuks Nov 1, 2023
f1c6686
Refactor: 필요 없는 테스트 클래스 제거
onetuks Nov 1, 2023
40aab75
Refactor: Region 엔티티 변경
onetuks Nov 1, 2023
1b32260
Feat: 시도 이용하여 시군구 검색 API 구현
onetuks Nov 1, 2023
7e196e7
refactor: 시군구 검색 시그니처 변경
onetuks Nov 1, 2023
3a6853b
Feat: 시도구군으로 읍면동 조회 API 구현
onetuks Nov 1, 2023
f7a9097
Feat: 조회 가능한 시도 조회 API 구현
onetuks Nov 1, 2023
3fdc275
Merge branch 'develop' into region
onetuks Nov 1, 2023
7da4746
Chore: 머지된 코드 리포매팅
onetuks Nov 1, 2023
ac6a085
Chore: 메인 패키지 변경 대응
onetuks Nov 1, 2023
a4bcce5
Test: 스프링 세큐리티 테스트 대응
onetuks Nov 1, 2023
a72f617
Feat: 지역 정보로 위경도 값 조회 기능 구현
onetuks Nov 1, 2023
05cc19f
Fix: 컬럼명 수정
onetuks Nov 1, 2023
7439616
Chore: CI 시 설정 문제 해결
onetuks Nov 1, 2023
67e0c83
Refactor: 컨트롤러 produces 속성 메소드 레벨로 이동
onetuks Nov 2, 2023
d95aef2
Feat: Region 테스트 가능하도록 수정
onetuks Nov 2, 2023
665b4f9
Chore: 테스트 불통 대응
onetuks Nov 2, 2023
4cb39da
Chore: CI 설정 오류 수정
onetuks Nov 2, 2023
a93c68a
Chore: CI 설정 오류 수정
onetuks Nov 2, 2023
02d64e1
Refactor: 지역 접두사 정보를 지역 엔티티로 이전
onetuks Nov 2, 2023
80e2ec8
Feat: 지역 예외 추가
onetuks Nov 2, 2023
fbab695
Feat: 시도, 시군구, 읍면동 유효성 어노테이션 구현
onetuks Nov 2, 2023
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
14 changes: 7 additions & 7 deletions .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,16 +44,16 @@ jobs:
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_PRIVATE_ACCESS_KEY }}
aws-region: ap-northeast-1
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_PRIVATE_ACCESS_KEY }}
aws-region: ap-northeast-1

- name: Upload to S3
run: aws s3 cp --region ap-northeast-1 ./$GITHUB_SHA.zip s3://$BUCKET_NAME/$PROJECT_NAME/$GITHUB_SHA.zip

- name: Code Deploy To EC2 instance
run: aws deploy create-deployment
--application-name $CODE_DEPLOY_APP_NAME
--deployment-config-name CodeDeployDefault.AllAtOnce
--deployment-group-name $DEPLOYMENT_GROUP_NAME
--s3-location bucket=$BUCKET_NAME,bundleType=zip,key=$PROJECT_NAME/$GITHUB_SHA.zip
--application-name $CODE_DEPLOY_APP_NAME
--deployment-config-name CodeDeployDefault.AllAtOnce
--deployment-group-name $DEPLOYMENT_GROUP_NAME
--s3-location bucket=$BUCKET_NAME,bundleType=zip,key=$PROJECT_NAME/$GITHUB_SHA.zip
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ HELP.md
.gradle/
build/
studay_server.iml
src/main/resources/application.yaml
*.yaml
Copy link
Contributor

Choose a reason for hiding this comment

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

헉.. 저도 설정했는데 나중에 conflict 처리해야겠군요 ㅠㅠ

Copy link
Contributor Author

Choose a reason for hiding this comment

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

ㅠㅠ 컨플릭트 싫은뎅 ㅠㅠ


### Intellij+all ###
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
Expand Down