Skip to content

Instantly share code, notes, and snippets.

@xAranaktu
Last active April 12, 2018 13:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xAranaktu/c4c954ac249472d541aff36ecce9bf12 to your computer and use it in GitHub Desktop.
Save xAranaktu/c4c954ac249472d541aff36ecce9bf12 to your computer and use it in GitHub Desktop.
DEBUG = True
ALLOWED_HOSTS = [".localhost", "127.0.0.1"]
SECRET_KEY = '%!672d#&uew1*xvwunbvxjtmek4n7(p52nd*4!1xw@&_*7l$dq'
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql',
'NAME': 'FIFA_TRACKER',
'USER': 'postgres',
'PASSWORD': 'admin123',
'HOST': '127.0.0.1',
'PORT': '5432',
}
}
EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend'
#EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend'
EMAIL_SUBJECT_PREFIX = '[FIFA Tracker] '
EMAIL_HOST=''
EMAIL_HOST_USER=''
EMAIL_HOST_PASSWORD=''
EMAIL_USE_SSL = True
EMAIL_PORT=465
DEFAULT_FROM_EMAIL = 'no-reply@fifatracker.net'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment