mono repo base
This commit is contained in:
48
API/src/main/resources/application.yml
Normal file
48
API/src/main/resources/application.yml
Normal file
@ -0,0 +1,48 @@
|
||||
# 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
|
Reference in New Issue
Block a user