Skip to content

Commit

Permalink
remove unnessescary information
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam Sutton committed Jan 18, 2024
1 parent 42dee10 commit 92698f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions webapp/api/core/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,6 @@
EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend'
EMAIL_HOST = 'smtp.gmail.com'
EMAIL_PORT = 587
EMAIL_HOST_USER = '[email protected]'
EMAIL_HOST_PASSWORD = 'rrwt ohso fpin swhi'
EMAIL_HOST_USER = os.environ.get('EMAIL_USER')
EMAIL_HOST_PASSWORD = os.environ.get('EMAIL_PASS')
EMAIL_USE_TLS = True

0 comments on commit 92698f7

Please sign in to comment.