Skip to content

Commit f3df14d

Browse files
committed
Add actuator
1 parent 89596c8 commit f3df14d

File tree

3 files changed

+29
-19
lines changed

3 files changed

+29
-19
lines changed

pom.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,10 @@
6262
<artifactId>jackson-datatype-jsr310</artifactId>
6363
<version>2.14.0</version>
6464
</dependency>
65+
<dependency>
66+
<groupId>org.springframework.boot</groupId>
67+
<artifactId>spring-boot-starter-actuator</artifactId>
68+
</dependency>
6569
</dependencies>
6670

6771
<build>

src/main/resources/application.example.yml

Lines changed: 0 additions & 19 deletions
This file was deleted.

src/main/resources/application.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
spring.neo4j:
2+
uri: bolt://127.0.0.1:7687
3+
authentication:
4+
username: neo4j
5+
password: changeme
6+
7+
toolkit:
8+
discordTags: alexpresso
9+
runAutomatedTasks: false
10+
11+
zunivers:
12+
apiBaseUrl: zunivers-api.zerator.com
13+
frontBaseUrl: zunivers.zerator.com
14+
15+
webhookUrl: #Use your own
16+
17+
logging:
18+
level:
19+
me.alexpresso.zuninja: INFO
20+
21+
management:
22+
endpoints:
23+
web:
24+
exposure:
25+
include: health

0 commit comments

Comments
 (0)