Skip to content

Commit

Permalink
Merge pull request #45 from Xaptured/TJP-064
Browse files Browse the repository at this point in the history
Added necessary files
  • Loading branch information
Xaptured committed Aug 27, 2023
2 parents b00c359 + 4b0d1f4 commit 84627f0
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
4 changes: 4 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,10 @@
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
Expand Down
14 changes: 13 additions & 1 deletion src/main/resources/application-dev.properties
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,16 @@ spring.jpa.hibernate.ddl-auto= update
spring.jpa.database-platform=org.hibernate.dialect.H2Dialect
spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.H2Dialect

spring.h2.console.enabled=true
spring.h2.console.enabled=true


management.endpoints.web.exposure.include=health,info,metrics
management.info.env.enabled=true
management.info.build.enabled=true
management.info.git.enabled=true
management.info.java.enabled=true
management.info.os.enabled=true

info.app.name=TheJackFolio Database Application
info.app.description=This microservice is used as a layer above the Database to perform all kinds of operations that are necessary for this project.
info.app.version=1.0.0

0 comments on commit 84627f0

Please sign in to comment.