Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 17 additions & 1 deletion src/main/resources/application-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,18 @@ spring:
password: ${DB_PASSWORD:?DB_PASSWORD is required}
driver-class-name: org.postgresql.Driver

mail:
host: ${MAIL_HOST}
port: ${MAIL_PORT}
username: ${MAIL_USERNAME}
password: ${MAIL_PASSWORD}
properties:
mail:
smtp:
auth: true
starttls:
enable: true

data:
redis:
host: redis
Expand Down Expand Up @@ -47,4 +59,8 @@ management:

metrics:
tags:
application: contact-api
application: contact-api

app:
mail:
from: ${MAIL_FROM}
Loading