git-extractor/src/main/resources/application.properties

18 lines
619 B
Properties
Raw Normal View History

2021-02-17 16:04:19 +04:00
spring.main.banner-mode=off
server.port=8080
# Available levels are: TRACE, DEBUG, INFO, WARN, ERROR, FATAL, OFF
2021-02-18 08:16:15 +04:00
logging.level.ru.ulstu=DEBUG
extractor.custom-projects-dir=
2021-03-16 13:50:29 +04:00
# 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
# Liquibase Settings
spring.liquibase.drop-first=false
spring.liquibase.enabled=true
spring.liquibase.change-log=classpath:db/changelog-master.xml