27 lines
988 B
Properties
27 lines
988 B
Properties
#
|
|
# Copyright (C) 2021 Anton Romanov - All Rights Reserved
|
|
# You may use, distribute and modify this code, please write to: romanov73@gmail.com.
|
|
#
|
|
|
|
spring.main.banner-mode=off
|
|
server.port=8080
|
|
server.jetty.connection-idle-timeout=1000s
|
|
# Available levels are: TRACE, DEBUG, INFO, WARN, ERROR, FATAL, OFF
|
|
logging.level.ru.ulstu=DEBUG
|
|
extractor.custom-projects-dir=
|
|
# Thymeleaf Settings
|
|
spring.thymeleaf.cache=false
|
|
messages.basename.path=messages_en.properties
|
|
# JPA Settings
|
|
spring.datasource.url=jdbc:postgresql://localhost:5432/repo
|
|
spring.datasource.username=postgres
|
|
spring.datasource.password=postgres
|
|
spring.datasource.driverclassName=org.postgresql.Driver
|
|
spring.jpa.hibernate.ddl-auto=validate
|
|
spring.jpa.database-platform=org.hibernate.dialect.PostgreSQLDialect
|
|
spring.jpa.properties.hibernate.temp.use_jdbc_metadata_defaults=false
|
|
# Liquibase Settings
|
|
spring.liquibase.drop-first=false
|
|
spring.liquibase.enabled=true
|
|
spring.liquibase.change-log=classpath:db/changelog-master.xml
|