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

Last change on this file since f6bc52d was ce6ad22, checked in by DavidTrajkovski <davidtrajkovski11@…>, 3 years ago

v1 initial prototype

  • Property mode set to 100644
File size: 784 bytes
Line 
1spring.datasource.url=jdbc:postgresql://localhost:5432/parkupdb
2spring.datasource.username=postgres
3spring.datasource.password=root
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.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.