Skip to content

Instantly share code, notes, and snippets.

@lesthack
Created November 14, 2013 15:55
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 lesthack/7469198 to your computer and use it in GitHub Desktop.
Save lesthack/7469198 to your computer and use it in GitHub Desktop.
# -*- coding: utf-8 -*-
ADMINS = (
('', ''),
)
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql_psycopg2', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'.
'NAME': 'nibiru', # Or path to database file if using sqlite3.
# The following settings are not used with sqlite3:
'USER': 'nibiru',
'PASSWORD': '',
'HOST': 'localhost', # Empty for localhost through domain sockets or '127.0.0.1' for localhost through TCP.
'PORT': '', # Set to empty string for default.
}
}
# Make this unique, and don't share it with anybody.
SECRET_KEY = ''
# Email configuration
EMAIL_USE_TLS = True
EMAIL_HOST = ''
EMAIL_HOST_USER = ''
EMAIL_HOST_PASSWORD = ''
EMAIL_PORT = 587
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment