File tree Expand file tree Collapse file tree 3 files changed +10
-3
lines changed Expand file tree Collapse file tree 3 files changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ repositories {
23
23
24
24
dependencies {
25
25
implementation(" org.springframework.boot:spring-boot-starter-web" )
26
+ implementation(" org.springframework.boot:spring-boot-starter-actuator" )
26
27
implementation(" io.github.cdimascio:dotenv-java:2.2.0" )
27
28
implementation(" com.fasterxml.jackson.module:jackson-module-kotlin" )
28
29
implementation(" org.jetbrains.kotlin:kotlin-reflect" )
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ services:
10
10
ports :
11
11
- ${DEPLOYMENT_PORT:-20080}:8080
12
12
healthcheck :
13
- test : curl --silent --fail http://127.0.0.1:8080/actuator/health/readiness | grep UP || exit 1
13
+ test : curl --silent --fail http://127.0.0.1:8080/api/ actuator/health | grep UP || exit 1
14
14
interval : 10s
15
15
retries : 10
16
16
start_period : 60s
Original file line number Diff line number Diff line change 1
1
spring.application.name =wallet-server
2
+
2
3
springdoc.swagger-ui.path =/docs
3
- spring.datasource.url =jdbc:h2:mem:database
4
4
springdoc.api-docs.path =/raw-docs
5
+
6
+ spring.datasource.url =jdbc:h2:mem:database
5
7
spring.datasource.driverClassName =org.h2.Driver
6
8
spring.datasource.username =sa
7
9
spring.datasource.password =
10
+
8
11
spring.jpa.database-platform =org.hibernate.dialect.H2Dialect
12
+
9
13
spring.h2.console.enabled =true
14
+
10
15
spring.mvc.servlet.path =/api
11
- private.key =${PRIVATE_KEY}
16
+
17
+ private.key =${PRIVATE_KEY}
You can’t perform that action at this time.
0 commit comments