source: src/main/resources/application.properties@ 3a74959

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

Fix commiT

  • Property mode set to 100644
File size: 607 bytes
RevLine 
[57e58a3]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
[3d60932]14spring.jpa.properties.hibernate.cache.use_second_level_cache=false
15spring.jpa.properties.hibernate.cache.use_query_cache=false
[57e58a3]16spring.jpa.show-sql=true
17
18spring.mvc.view.prefix=/static/
19spring.mvc.view.suffix=.html
[3d60932]20
21
22
Note: See TracBrowser for help on using the repository browser.