source: src/main/resources/application.properties@ 57e58a3

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

Initial commit

  • Property mode set to 100644
File size: 514 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.hibernate.ddl-auto=update
15spring.jpa.show-sql=true
16
17spring.mvc.view.prefix=/static/
18spring.mvc.view.suffix=.html
Note: See TracBrowser for help on using the repository browser.