Skip to content

Commit

Permalink
environment variables for the backend
Browse files Browse the repository at this point in the history
  • Loading branch information
codeschris committed Dec 4, 2023
1 parent e827156 commit a275e2a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Binary file modified backend/backend/__pycache__/settings.cpython-311.pyc
Binary file not shown.
8 changes: 4 additions & 4 deletions backend/backend/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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 modified backend/db.sqlite3
Binary file not shown.

0 comments on commit a275e2a

Please sign in to comment.