source: src/main/resources/application.properties@ ac19a0c

Last change on this file since ac19a0c was e9b4ba9, checked in by darsov2 <62809499+darsov2@…>, 6 months ago

prototype

  • Property mode set to 100644
File size: 586 bytes
Line 
1server.port=8080
2## PostgreSQL
3spring.datasource.driver-class-name=org.postgresql.Driver
4spring.datasource.url=jdbc:postgresql://localhost:5432/tourmate
5spring.datasource.username=postgres
6spring.datasource.password=admin
7
8spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect
9spring.jpa.hibernate.ddl-auto=update
10spring.jpa.show_sql=true
11spring.jpg.hibernate.format_sql=false
12
13spring.datasource.type=com.zaxxer.hikari.HikariDataSource
14spring.datasource.hikari.maximumPoolSize=5
15
16spring.jpa.generate-ddl=true
17logging.level.org.springframework.security=DEBUG
18
19
Note: See TracBrowser for help on using the repository browser.