Skip to content

Commit

Permalink
Moves email settings to their section
Browse files Browse the repository at this point in the history
  • Loading branch information
alemangui committed Jan 24, 2024
1 parent cc54f61 commit 5158def
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions icare/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,11 @@
EMAIL_HOST = "localhost"
EMAIL_PORT = 1025

NEWSLETTER_BREVO_LIST_ID = os.getenv("NEWSLETTER_BREVO_LIST_ID")
ANYMAIL = {
"SENDINBLUE_API_KEY": os.getenv("BREVO_API_KEY", ""),
}

# Rest framework

REST_FRAMEWORK = {
Expand Down Expand Up @@ -239,11 +244,6 @@
},
}

NEWSLETTER_BREVO_LIST_ID = os.getenv("NEWSLETTER_BREVO_LIST_ID")
ANYMAIL = {
"SENDINBLUE_API_KEY": os.getenv("BREVO_API_KEY", ""),
}

# CK Editor
CKEDITOR_UPLOAD_PATH = "uploads/"
CKEDITOR_IMAGE_BACKEND = "pillow"
Expand Down

0 comments on commit 5158def

Please sign in to comment.