Skip to content

Commit

Permalink
Fix #86: Executable war
Browse files Browse the repository at this point in the history
  • Loading branch information
jandusil committed Oct 24, 2023
1 parent 106cf4d commit c4f109b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,12 @@
</properties>

<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/application.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
spring.application.name=user-data-store

spring.datasource.url=${USER_DATA_STORE_DATASOURCE_URL:jdbc:postgresql://host.docker.internal:5432/powerauth}
spring.datasource.url=${USER_DATA_STORE_DATASOURCE_URL:jdbc:postgresql://localhost:5432/powerauth}
spring.datasource.username=${USER_DATA_STORE_DATASOURCE_USERNAME:powerauth}
spring.datasource.password=${USER_DATA_STORE_DATASOURCE_PASSWORD:}
spring.datasource.driver-class-name=org.postgresql.Driver
Expand Down

0 comments on commit c4f109b

Please sign in to comment.