source: sources/app/src/main/resources/application.properties@ 9ff45d6

Last change on this file since 9ff45d6 was 9ff45d6, checked in by andrejTavchioski <andrej.tavchioski@…>, 2 years ago

Fixed some functionalities related to parkingSessions and parkingZones

  • Property mode set to 100644
File size: 779 bytes
Line 
1spring.datasource.url=jdbc:postgresql://localhost:5432/parkupdb
2spring.datasource.username=postgres
3spring.datasource.password=1234
4spring.jpa.hibernate.ddl-auto=update
5spring.jpa.show-sql=true
6spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect
7spring.jpa.properties.hibernate.format_sql=true
8
9spring.mail.host=localhost
10spring.mail.port=1025
11spring.mail.username=hello
12spring.mail.password=hello
13
14spring.mail.properties.mail.transport.protocol=smtp
15spring.mail.properties.mail.smtp.ssl.trust="*"
16spring.mail.properties.mail.smtp.auth=false
17spring.mail.properties.mail.smtp.starttls.enable=false
18spring.mail.properties.mail.smtp.connectiontimeout=5000
19spring.mail.properties.mail.smtp.timeout=3000
20spring.mail.properties.mail.smtp.writetimeout=5000
21
Note: See TracBrowser for help on using the repository browser.