49 lines
1.2 KiB
YAML
49 lines
1.2 KiB
YAML
# 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/<YOUR_DATABASE_NAME>
|
|
username: <YOUR_USERNAME>
|
|
password: <YOUR_PASSWORD>
|
|
jpa:
|
|
hibernate:
|
|
ddl-auto: <create | create-drop | update | validate | none>
|
|
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
|