We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5d858b3 + a966b35 commit a451407Copy full SHA for a451407
build.gradle
@@ -60,6 +60,9 @@ dependencies {
60
// mail
61
implementation 'org.springframework.boot:spring-boot-starter-mail'
62
implementation 'org.springframework:spring-context-support'
63
+
64
+ // health check
65
+ implementation "org.springframework.boot:spring-boot-starter-actuator"
66
}
67
68
tasks.named('test') {
src/main/resources/application-prod.properties
@@ -72,3 +72,6 @@ openai.secret-key=${OPENAI_SECRETKEY}
72
# naver
73
naver.id={NAVER_ID}
74
naver.password=[NAVER_PW}
75
76
+# health check
77
+management.endpoints.web.exposure.include=health
0 commit comments