forked from Swahilipot-Hub-Developers/members-management
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
environment variables for the backend
- Loading branch information
1 parent
e827156
commit a275e2a
Showing
3 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
Binary file not shown.
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 |
---|---|---|
|
@@ -21,7 +21,7 @@ | |
# See https://docs.djangoproject.com/en/4.2/howto/deployment/checklist/ | ||
|
||
# SECURITY WARNING: keep the secret key used in production secret! | ||
SECRET_KEY = "django-insecure--fmwckg#6yp*9n_2-%l-!t5g9r(%@1n4r0f*bzd%0a(ucmxnn^" # config('SECRET_KEY') | ||
SECRET_KEY = config('SECRET_KEY') | ||
|
||
# SECURITY WARNING: don't run with debug turned on in production! | ||
DEBUG = True | ||
|
@@ -157,9 +157,9 @@ | |
EMAIL_USE_TLS = True | ||
EMAIL_USE_SSL = False | ||
EMAIL_HOST_USER = '[email protected]' | ||
EMAIL_HOST_PASSWORD = 'dxkypnlfsocqidbu' | ||
EMAIL_HOST_PASSWORD = config('EMAIL_HOST_PASSWORD') | ||
|
||
#Twilio Configuration | ||
TWILIO_ACCOUNT_SID = 'ACea97652a3607db85973cb5309aa42507' | ||
TWILIO_AUTH_TOKEN = '5cc288515a49e78298d2054e481e7cdf' | ||
TWILIO_ACCOUNT_SID = config('TWILIO_ACCOUNT_SID') | ||
TWILIO_AUTH_TOKEN = config('TWILIO_AUTH_TOKEN') | ||
TWILIO_PHONE_NUMBER = '+12138109072' |
Binary file not shown.