source: backend/src/main/resources/application.properties@ c613cbf

Last change on this file since c613cbf was c613cbf, checked in by MBK <marija.karapandzova@…>, 4 months ago

Add exceptions

  • Property mode set to 100644
File size: 698 bytes
Line 
1spring.application.name=medora
2
3# Spring Security - Development credentials
4spring.security.user.name=admin
5spring.security.user.password=admin123
6
7spring.datasource.url=jdbc:postgresql://localhost:5432/medora
8spring.datasource.username=postgres
9spring.datasource.password=postgres
10spring.datasource.driver-class-name=org.postgresql.Driver
11
12# JPA / Hibernate settings
13spring.jpa.hibernate.ddl-auto=update
14spring.jpa.show-sql=true
15spring.jpa.properties.hibernate.format_sql=true
16spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect
17
18# Jackson serialization settings
19spring.jackson.serialization.fail-on-empty-beans=false
20spring.jackson.default-property-inclusion=non_null
Note: See TracBrowser for help on using the repository browser.