Files
Backend/src/main/resources/application.yml
Liam 1c685ca414
Some checks failed
Deploy App / docker (ubuntu-latest, 2.44.0, 17, 3.8.5) (push) Failing after 1m1s
switch to mongo for metric storage
2024-04-18 13:31:22 +01:00

43 lines
729 B
YAML

server:
address: 0.0.0.0
port: 80
servlet:
context-path: /
# Spring Configuration
spring:
# Don't include null properties in JSON
jackson:
default-property-inclusion: non_null
data:
# Redis - This is used for caching
redis:
host: "127.0.0.1"
port: 6379
database: 1
auth: "" # Leave blank for no auth
mongodb:
uri: mongodb://localhost:27017
database: database
# Disable default metrics
management:
endpoints:
web:
exposure:
exclude:
- "*"
influx:
metrics:
export:
enabled: false
# InfluxDB Configuration
influx:
url: http://localhost
token: token
org: org
bucket: bucket
public-url: http://localhost