source: src/main/resources/application.properties

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

ouath, mailing impl

  • Property mode set to 100644
File size: 1.3 KB
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
16
17
18spring.jpa.generate-ddl=true
19logging.level.org.springframework.security=DEBUG
20
21
22spring.security.oauth2.client.registration.github.client-id=f84a0839a98bf3b25d38
23spring.security.oauth2.client.registration.github.client-secret=e22be1f60e10517c8906bde54529280e57ff21f3
24
25spring.security.oauth2.client.registration.google.client-id=122292211431-p18l1falsh51nevvm2sg85rjp0psqsn4.apps.googleusercontent.com
26spring.security.oauth2.client.registration.google.client-secret=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
27spring.security.oauth2.client.registration.google.scope=profile,email
28
29spring.security.oauth2.client.registration.facebook.client-id=904891684514537
30spring.security.oauth2.client.registration.facebook.client-secret=f69fe635933dd32c12b5786968f18b4c
31#logging.level.org.springframework.security=DEBUG
32logging.level.org.springframework.security.oauth2=DEBUG
33
34
35
Note: See TracBrowser for help on using the repository browser.