# Server Configuration server: address: 0.0.0.0 port: 7500 # Spring Configuration spring: data: # MongoDB Configuration mongodb: uri: "mongodb://bs-tracker:p4$$w0rd@localhost:27017" database: "bs-tracker" auto-index-creation: true # Automatically create collection indexes datasource: url: jdbc:postgresql://localhost:5432/ username: password: jpa: hibernate: ddl-auto: properties: hibernate: dialect: org.hibernate.dialect.PostgreSQLDialect # Don't serialize null values by default with Jackson jackson: default-property-inclusion: non_null # QuestDB Configuration questdb: host: localhost:9000 username: admin password: quest # DO NOT TOUCH BELOW management: # Disable all actuator endpoints endpoints: web: exposure: exclude: - "*" # Disable default metrics influx: metrics: export: enabled: false