Skip to content

Commit

Permalink
release: 백엔드 v4.1 (#669)
Browse files Browse the repository at this point in the history
* graceful-test

* graceful-test2

* chore: own 설정 추가

* chore: own 설정 수정

* chore: logback 설정 수정

* Update backend-dev-cd.yml (#657)

---------

Co-authored-by: TaeyeonRoyce <[email protected]>
Co-authored-by: Taeyeon <[email protected]>
  • Loading branch information
3 people authored Dec 29, 2023
1 parent 9e6440f commit 6c286bf
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/backend-dev-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,4 +76,5 @@ jobs:
run: |
export APP_VERSION_TAG=${{ secrets.APP_VERSION_TAG }}
pwd
sh /home/ubuntu/deploy.sh
docker compose down
docker compose up -d
2 changes: 1 addition & 1 deletion backend/backend-submodule
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,10 @@ ResponseEntity<List<CelebQueryResponse>> find() {
List<CelebQueryResponse> result = celebQueryService.find();
return ResponseEntity.ok(result);
}

@GetMapping("/test")
ResponseEntity<Void> test() throws InterruptedException {
Thread.sleep(10000);
return ResponseEntity.ok().build();
}
}
2 changes: 1 addition & 1 deletion backend/src/main/resources/logback-spring.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
</root>
</springProfile>

<springProfile name="dev, prod">
<springProfile name="dev, prod, own">
<property name="infoLogPath" value="logs/backend/info"/>
<property name="warnLogPath" value="logs/backend/warn"/>
<property name="errorLogPath" value="logs/backend/error"/>
Expand Down

0 comments on commit 6c286bf

Please sign in to comment.