source: ReserveNGo-backend/src/main/resources/application.properties@ 867c6ef

Last change on this file since 867c6ef was 867c6ef, checked in by Nikola Jordanoski <nikolaj_koko@…>, 5 months ago

Improved user disable, added user re-enable account + scheduled task for account deletion, sheduled task for manager & worker account disabling + new User model field LastActivityDate + initial email sending functionality

  • Property mode set to 100644
File size: 435 bytes
Line 
1spring.application.name=ReserveNGo
2server.port=8080
3spring.profiles.active=dev
4# use prod for postgre
5
6spring.servlet.multipart.max-file-size=10MB
7spring.servlet.multipart.max-request-size=20MB
8
9spring.mail.host=${MAIL_HOST:smtp.gmail.com}
10spring.mail.port=587
11spring.mail.username=${MAIL_USERNAME:}
12spring.mail.password=${MAIL_PASSWORD:}
13spring.mail.properties.mail.smtp.auth=true
14spring.mail.properties.mail.smtp.starttls.enable=true
Note: See TracBrowser for help on using the repository browser.