Skip to content

Commit

Permalink
Updating FTP credentials for deployment on my new server
Browse files Browse the repository at this point in the history
  • Loading branch information
BlakvGhost authored May 17, 2024
1 parent c447e18 commit d94f0b3
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions TimeTable/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
else:
DEBUG = True

ALLOWED_HOSTS = ["webp2ms.kabirou-alassane.com", 'localhost', '127.0.0.1']
ALLOWED_HOSTS = ["webp2ms.username-blakvghost.com", 'localhost', '127.0.0.1']


# Application definition
Expand Down Expand Up @@ -142,12 +142,12 @@
LOGIN_URL = '/auth/login'

EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend'
EMAIL_HOST = 'mail.kabirou-alassane.com'
EMAIL_HOST = config('EMAIL_HOST'),
EMAIL_PORT = 465
EMAIL_HOST_USER = '[email protected]'
EMAIL_HOST_PASSWORD = 'jQ0yiv~!Y;&='
EMAIL_HOST_USER = config('EMAIL_USERNAME')
EMAIL_HOST_PASSWORD = config('EMAIL_PASSWORD')
EMAIL_USE_SSL = True
DEFAULT_FROM_EMAIL = '[email protected]'
DEFAULT_FROM_EMAIL = config('EMAIL_USERNAME')


# Default primary key field type
Expand Down

0 comments on commit d94f0b3

Please sign in to comment.