spring.application.name=SkyChase-mk # Server configuration server.port=8080 # PostgreSQL Database Configuration spring.datasource.url=jdbc:postgresql://localhost:5432/postgres spring.datasource.username=postgres spring.datasource.password=admin spring.datasource.driver-class-name=org.postgresql.Driver # JPA Settings spring.jpa.database-platform=org.hibernate.dialect.PostgreSQLDialect spring.jpa.properties.hibernate.cache.use_second_level_cache=false spring.jpa.properties.hibernate.cache.use_query_cache=false spring.jpa.show-sql=true spring.mvc.view.prefix=/static/ spring.mvc.view.suffix=.html