source: target/classes/application.properties@ e9b70f6

Last change on this file since e9b70f6 was 74af394, checked in by makyjovanovsky <mjovanovski04@…>, 17 months ago

login/register with mail confirmation

  • Property mode set to 100644
File size: 866 bytes
Line 
1spring.datasource.url=jdbc:postgresql://localhost:5432/users
2spring.datasource.username=postgres
3spring.datasource.password=maky123
4spring.jpa.hibernate.ddl-auto=create-drop
5spring.jpa.show-sql=true
6spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect
7spring.jpa.properties.hibernate.format_sql=true
8
9spring.freemarker.template-loader-path=classpath:/templates
10spring.freemarker.suffix=.ftl
11
12spring.mail.host=localhost
13spring.mail.port=1025
14spring.mail.username=maky
15spring.mail.password=maky
16
17spring.mail.properties.mail.transport.protocol = smtp
18spring.mail.properties.mail.smtp.ssl.trust="*"
19spring.mail.properties.mail.smtp.auth=true
20spring.mail.properties.mail.starttls.enable=true
21spring.mail.properties.mail.smtp.connectiontimeout=5000
22spring.mail.properties.mail.smtp.timeout=3000
23spring.mail.properties.mail.smtp.writetimeout=5000
Note: See TracBrowser for help on using the repository browser.