-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #334 from helxplatform/jan_2024_patches
Jan 2024 patches
- Loading branch information
Showing
5 changed files
with
14 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -235,13 +235,15 @@ | |
) | ||
|
||
# Email configuration | ||
# UNC Relay: relay.unc.edu:25 | ||
# Renci Relay: relay.renci.org | ||
EMAIL_BACKEND = "django.core.mail.backends.smtp.EmailBackend" | ||
EMAIL_HOST = "smtp.gmail.com" | ||
EMAIL_PORT = "587" | ||
EMAIL_HOST =os.environ.get("EMAIL_HOST","") | ||
EMAIL_PORT = os.environ.get("EMAIL_PORT", "") | ||
EMAIL_HOST_USER = os.environ.get("EMAIL_HOST_USER", "[email protected]") | ||
EMAIL_HOST_PASSWORD = os.environ.get("EMAIL_HOST_PASSWORD", "") | ||
RECIPIENT_EMAILS = os.environ.get("RECIPIENT_EMAILS", "") | ||
EMAIL_USE_TLS = True | ||
EMAIL_USE_TLS = os.environ.get("EMAIL_USE_TLS", False) # Boolean | ||
DEFAULT_FROM_EMAIL = os.environ.get("APPSTORE_DEFAULT_FROM_EMAIL", EMAIL_HOST_USER) | ||
DEFAULT_SUPPORT_EMAIL = os.environ.get( | ||
"APPSTORE_DEFAULT_SUPPORT_EMAIL", EMAIL_HOST_USER | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
Django==3.2 | ||
Django==3.2.23 | ||
django-allauth==0.54.0 | ||
django-cors-headers==3.7.0 | ||
django-crispy-forms==1.11.2 | ||
|