source: backend/src/main/resources/application.properties@ 700e2f9

main
Last change on this file since 700e2f9 was 700e2f9, checked in by 186079 <matej.milevski@…>, 5 days ago

Init

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