Skip to content

Commit

Permalink
Revert "Merge pull request #122 from Guzzing/feat/monitoring"
Browse files Browse the repository at this point in the history
This reverts commit d85ea06, reversing
changes made to eefb5fd.
  • Loading branch information
onetuks committed Dec 8, 2023
1 parent d85ea06 commit 6bdb73e
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/ci-develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,11 @@ jobs:
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:
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/develop-cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,11 @@ jobs:
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:
Expand Down
3 changes: 3 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,9 @@ dependencies {
// Swagger UI
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.2.0'

// Redis
implementation 'org.springframework.boot:spring-boot-starter-data-redis'

// Webflux
implementation 'org.springframework.boot:spring-boot-starter-webflux'

Expand Down

0 comments on commit 6bdb73e

Please sign in to comment.