Skip to content

Commit

Permalink
Ajuste no settings com PORT default
Browse files Browse the repository at this point in the history
  • Loading branch information
matheuspdf committed Oct 10, 2024
1 parent d859f77 commit 6042962
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eventex/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@
# Email configuration
EMAIL_BACKEND = config('EMAIL_BACKEND', default='django.core.mail.backends.smtp.EmailBackend')
EMAIL_HOST = config('EMAIL_HOST', default='')
EMAIL_PORT = config('EMAIL_PORT', cast=int, default='')
EMAIL_PORT = config('EMAIL_PORT', cast=int, default=587)
EMAIL_USE_TLS = config('EMAIL_USE_TLS', cast=bool, default='')
EMAIL_HOST_USER = config('EMAIL_HOST_USER', default='')
EMAIL_HOST_PASSWORD = config('EMAIL_HOST_PASSWORD', default='')
Expand Down

0 comments on commit 6042962

Please sign in to comment.