Skip to content

Commit

Permalink
hotfix: fix workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
LeonardoMeireles55 committed Jan 26, 2025
1 parent d58a291 commit 8819a92
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ RUN $JAVA_HOME/bin/jlink \
--strip-debug \
--no-man-pages \
--no-header-files \
--compress=2 \
--compress=zip-6 \
--output /optimized-jdk-21

# Second stage, Use the custom JRE and build the app image
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/application-local.properties
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ server.error.include-stacktrace=never
# = LOGGING CONFIGURATION
# ===============================
logging.level.leonardo=DEBUG
logging.level.org.apache.coyote.http11.Http11Processor=DEBUG

# ===============================
# = MANAGEMENT CONFIGURATION
# ===============================
management.endpoints.web.exposure.include=*
management.endpoint.health.show-details=always

# ===============================
Expand Down
9 changes: 8 additions & 1 deletion src/main/resources/application-prod.properties
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,14 @@ server.error.include-stacktrace=never
# = LOGGING CONFIGURATION
# ===============================
logging.level.leonardo=DEBUG
logging.level.org.apache.coyote.http11.Http11Processor=DEBUG

# ===============================
# = MONITORING
# ===============================
management.endpoints.web.exposure.include=health
management.endpoint.health.show-details=never
management.health.ssl.enabled=false
management.health.email.enabled=false

# ===============================
# = DATABASE CONFIGURATION
Expand Down
3 changes: 0 additions & 3 deletions src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ logging.file.name=logging_file.log
# ===============================
management.endpoints.web.exposure.include=*
management.endpoint.health.show-details=always
#management.endpoint.health.show-components=always

# ===============================
# = DATABASE CONFIGURATION
Expand Down Expand Up @@ -46,9 +45,7 @@ spring.mail.password=${SPRING_MAIL_PASSWORD}
spring.mail.properties.mail.smtp.auth=true
spring.mail.properties.mail.smtp.starttls.enable=true
spring.mail.properties.mail.smtp.ssl.trust=smtp.gmail.com
spring.mail.properties.mail.smtp.connectiontimeout=5000
spring.mail.properties.mail.smtp.timeout=5000
spring.mail.properties.mail.smtp.writetimeout=5000
email.to.send.list=${EMAIL_TO_SEND_LIST}

# ===============================
Expand Down

0 comments on commit 8819a92

Please sign in to comment.