19 lines
585 B
Properties
Executable File
19 lines
585 B
Properties
Executable File
server.port=8080
|
|
|
|
# PostgreSQL (дефолтный — для локальной разработки через Docker Compose)
|
|
spring.datasource.url=jdbc:postgresql://db:5432/app_db
|
|
spring.datasource.username=${POSTGRES_USER:myuser}
|
|
spring.datasource.password=${POSTGRES_PASSWORD:supersecretpassword}
|
|
spring.datasource.driver-class-name=org.postgresql.Driver
|
|
|
|
# JPA
|
|
spring.jpa.hibernate.ddl-auto=none
|
|
spring.jpa.show-sql=false
|
|
spring.jpa.open-in-view=false
|
|
|
|
# Мультитенантность
|
|
app.tenants.config-path=${TENANTS_CONFIG_PATH:tenants.json}
|
|
|
|
#logging.level.root=DEBUG
|
|
|