source: src/main/resources/application.properties@ 7deb3e2

Last change on this file since 7deb3e2 was 3d60932, checked in by ste08 <sjovanoska@…>, 4 months ago

Fix commiT

  • Property mode set to 100644
File size: 607 bytes
Line 
1spring.application.name=SkyChase-mk
2
3# Server configuration
4server.port=8080
5
6# PostgreSQL Database Configuration
7spring.datasource.url=jdbc:postgresql://localhost:5432/postgres
8spring.datasource.username=postgres
9spring.datasource.password=admin
10spring.datasource.driver-class-name=org.postgresql.Driver
11
12# JPA Settings
13spring.jpa.database-platform=org.hibernate.dialect.PostgreSQLDialect
14spring.jpa.properties.hibernate.cache.use_second_level_cache=false
15spring.jpa.properties.hibernate.cache.use_query_cache=false
16spring.jpa.show-sql=true
17
18spring.mvc.view.prefix=/static/
19spring.mvc.view.suffix=.html
20
21
22
Note: See TracBrowser for help on using the repository browser.