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

Last change on this file was cdcff72, checked in by MBK <marija.karapandzova@…>, 11 days ago

Fix frontend appearance and fix bugs

  • Property mode set to 100644
File size: 770 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=medora_app
9spring.datasource.password=postgres
10spring.datasource.driver-class-name=org.postgresql.Driver
11
12# JWT Configuration
13jwt.secret=${JWT_SECRET}
14jwt.expiration=86400000
15
16# JPA / Hibernate settings
17spring.jpa.hibernate.ddl-auto=update
18spring.jpa.show-sql=true
19spring.jpa.properties.hibernate.format_sql=true
20spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect
21
22# Jackson serialization settings
23spring.jackson.serialization.fail-on-empty-beans=false
24spring.jackson.default-property-inclusion=non_null
Note: See TracBrowser for help on using the repository browser.