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

Last change on this file since b8dc761 was b8dc761, checked in by NikolaCenevski <cenevskinikola@…>, 2 years ago

part 2

  • Property mode set to 100644
File size: 1.2 KB
Line 
1spring.datasource.url=jdbc:postgresql://localhost:5432/charitable
2spring.datasource.username=postgres
3spring.datasource.password=postgres
4spring.thymeleaf.cache=false
5spring.jpa.hibernate.ddl-auto=update
6spring.jpa.show-sql=true
7spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect
8spring.jpa.properties.hibernate.format_sql=true
9
10spring.servlet.multipart.max-file-size=50MB
11spring.servlet.multipart.max-request-size=50MB
12
13spring.mail.host=smtp.gmail.com
14spring.mail.port=587
15spring.mail.username=charitablemk@gmail.com
16spring.mail.password=charitablemk19
17spring.mail.properties.mail.smtp.auth=true
18spring.mail.properties.mail.smtp.starttls.enable=true
19
20server.port=9091
21
22spring.security.oauth2.client.registration.google.client-id=365912873832-mqicpsq1fbbi8e01ghslpulgblkngk3l.apps.googleusercontent.com
23spring.security.oauth2.client.registration.google.client-secret=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
24spring.security.oauth2.client.registration.google.scope=profile,email
25
26spring.security.oauth2.client.registration.facebook.client-id=429047632308553
27spring.security.oauth2.client.registration.facebook.client-secret=c13280b6c116663c5bdd85c5b7a986e1
28spring.security.oauth2.client.registration.facebook.scope=public_profile,email
Note: See TracBrowser for help on using the repository browser.