main
|
Last change
on this file was 700e2f9, checked in by 186079 <matej.milevski@…>, 5 days ago |
|
Init
|
-
Property mode
set to
100644
|
|
File size:
763 bytes
|
| Line | |
|---|
| 1 | spring.application.name=iCare
|
|---|
| 2 |
|
|---|
| 3 | # Server Configuration
|
|---|
| 4 | server.port=8080
|
|---|
| 5 |
|
|---|
| 6 | # Database Configuration
|
|---|
| 7 | spring.datasource.url=jdbc:postgresql://localhost:${POSTGRES_PORT}/${POSTGRES_DB}
|
|---|
| 8 | spring.datasource.username=${POSTGRES_USER}
|
|---|
| 9 | spring.datasource.password=${POSTGRES_PASSWORD}
|
|---|
| 10 | spring.datasource.driver-class-name=org.postgresql.Driver
|
|---|
| 11 |
|
|---|
| 12 | # JPA/Hibernate Configuration
|
|---|
| 13 | spring.jpa.database-platform=org.hibernate.dialect.PostgreSQLDialect
|
|---|
| 14 | spring.jpa.hibernate.ddl-auto=validate
|
|---|
| 15 | spring.jpa.show-sql=true
|
|---|
| 16 | spring.jpa.properties.hibernate.format_sql=true
|
|---|
| 17 | spring.jpa.properties.hibernate.default_schema=project
|
|---|
| 18 |
|
|---|
| 19 | # Flyway Configuration
|
|---|
| 20 | spring.flyway.enabled=true
|
|---|
| 21 | spring.flyway.baseline-on-migrate=true
|
|---|
| 22 | spring.flyway.locations=classpath:db/migration
|
|---|
| 23 | spring.flyway.schemas=project
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.