Newer
Older
job-tracker / src / main / resources / application.properties
server.port=8088
spring.datasource.url=jdbc:postgresql://192.168.1.253:5432/job_tracker
spring.datasource.username=jobuser
spring.datasource.password=jobpass

#JPA/HIBERNATE
spring.jpa.hibernate.ddl-auto=validate
spring.jpa.properties.hibernate.jdbc.lob.non_contextual_creation=true
spring.jpa.show-sql=true
spring.jpa.properties.hibernate.format_sql=true
# Use UTC timestamps
spring.jpa.properties.hibernate.jdbc.time_zone=UTC

# Flyway
spring.flyway.enabled=true
spring.flyway.locations=classpath:db/migration
spring.flyway.schemas=public
spring.flyway.baseline-on-migrate=true