Skip to content
Open
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
14 changes: 7 additions & 7 deletions src/main/resources/application.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
spring:
datasource:
url: jdbc:postgresql://${DATABASE_HOST:localhost}:${DATABASE_PORT:5432}/${DATABASE_NAME:patchats}
username: ${DATABASE_USER:postgres}
password: ${DATABASE_PASSWORD:}
url: jdbc:postgresql://${DATABASE_HOST}:${DATABASE_PORT}/${DATABASE_NAME}
username: ${DATABASE_USER}
password: ${DATABASE_PASSWORD}
flyway:
# Migrations run out-of-band via the Flyway Maven plugin (`just migrate`), never at startup.
enabled: false
Expand All @@ -11,10 +11,10 @@ spring:
jdbc:
initialize-schema: never
mail:
host: ${SMTP_HOST:}
port: ${SMTP_PORT:587}
username: ${SMTP_USERNAME:}
password: ${SMTP_PASSWORD:}
host: ${SMTP_HOST}
port: 587
Comment thread
isabellalam12 marked this conversation as resolved.
username: ${SMTP_USERNAME}
password: ${SMTP_PASSWORD}
properties:
mail:
smtp:
Expand Down