|
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 | |
|---|
| 1 | spring.application.name=medora
|
|---|
| 2 |
|
|---|
| 3 | # Spring Security - Development credentials
|
|---|
| 4 | spring.security.user.name=admin
|
|---|
| 5 | spring.security.user.password=admin123
|
|---|
| 6 |
|
|---|
| 7 | spring.datasource.url=jdbc:postgresql://localhost:5432/medora
|
|---|
| 8 | spring.datasource.username=medora_app
|
|---|
| 9 | spring.datasource.password=postgres
|
|---|
| 10 | spring.datasource.driver-class-name=org.postgresql.Driver
|
|---|
| 11 |
|
|---|
| 12 | # JWT Configuration
|
|---|
| 13 | jwt.secret=${JWT_SECRET}
|
|---|
| 14 | jwt.expiration=86400000
|
|---|
| 15 |
|
|---|
| 16 | # JPA / Hibernate settings
|
|---|
| 17 | spring.jpa.hibernate.ddl-auto=update
|
|---|
| 18 | spring.jpa.show-sql=true
|
|---|
| 19 | spring.jpa.properties.hibernate.format_sql=true
|
|---|
| 20 | spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect
|
|---|
| 21 |
|
|---|
| 22 | # Jackson serialization settings
|
|---|
| 23 | spring.jackson.serialization.fail-on-empty-beans=false
|
|---|
| 24 | spring.jackson.default-property-inclusion=non_null
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.