2012-08-28 18:44:51 +02:00
|
|
|
# Django settings for humbug project.
|
2012-08-28 18:45:32 +02:00
|
|
|
import os
|
2012-09-17 23:30:29 +02:00
|
|
|
import platform
|
2012-08-28 18:44:51 +02:00
|
|
|
|
2012-10-27 17:11:30 +02:00
|
|
|
deployed = (('humbughq.com' in platform.node())
|
|
|
|
or os.path.exists('/etc/humbug-server'))
|
2012-09-17 23:30:29 +02:00
|
|
|
|
2012-09-18 19:42:42 +02:00
|
|
|
DEBUG = not deployed
|
2012-08-28 18:44:51 +02:00
|
|
|
TEMPLATE_DEBUG = DEBUG
|
|
|
|
|
2012-09-19 22:25:13 +02:00
|
|
|
if DEBUG:
|
|
|
|
INTERNAL_IPS = ('127.0.0.1',)
|
|
|
|
|
2012-08-28 18:44:51 +02:00
|
|
|
ADMINS = (
|
2012-11-02 20:45:51 +01:00
|
|
|
('Devel', 'devel@humbughq.com'),
|
2012-08-28 18:44:51 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
MANAGERS = ADMINS
|
|
|
|
|
|
|
|
DATABASES = {
|
|
|
|
'default': {
|
|
|
|
'ENGINE': 'django.db.backends.sqlite3',
|
|
|
|
'NAME': 'zephyrdb',
|
|
|
|
'USER': '', # Not used with sqlite3.
|
|
|
|
'PASSWORD': '', # Not used with sqlite3.
|
|
|
|
'HOST': '', # Set to empty string for localhost. Not used with sqlite3.
|
|
|
|
'PORT': '', # Set to empty string for default. Not used with sqlite3.
|
2012-09-14 19:22:56 +02:00
|
|
|
'OPTIONS': {
|
|
|
|
'timeout': 20,
|
|
|
|
},
|
2012-09-14 19:17:26 +02:00
|
|
|
},
|
2012-09-14 22:29:53 +02:00
|
|
|
}
|
|
|
|
|
2012-09-17 23:30:29 +02:00
|
|
|
if deployed:
|
2012-09-17 19:20:05 +02:00
|
|
|
DATABASES['default'] = {
|
2012-09-14 19:17:26 +02:00
|
|
|
'ENGINE': 'django.db.backends.mysql',
|
|
|
|
'OPTIONS': {
|
|
|
|
'read_default_file': '/etc/mysql/my.cnf',
|
|
|
|
},
|
2012-09-14 22:29:53 +02:00
|
|
|
}
|
2012-08-28 18:44:51 +02:00
|
|
|
|
|
|
|
# Local time zone for this installation. Choices can be found here:
|
|
|
|
# http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
|
|
|
|
# although not all choices may be available on all operating systems.
|
|
|
|
# In a Windows environment this must be set to your system time zone.
|
2012-09-12 22:40:18 +02:00
|
|
|
TIME_ZONE = 'America/New_York'
|
2012-08-28 18:44:51 +02:00
|
|
|
|
|
|
|
# Language code for this installation. All choices can be found here:
|
|
|
|
# http://www.i18nguy.com/unicode/language-identifiers.html
|
|
|
|
LANGUAGE_CODE = 'en-us'
|
|
|
|
|
2012-11-01 23:11:32 +01:00
|
|
|
# The ID, as an integer, of the current site in the django_site database table.
|
|
|
|
# This is used so that application data can hook into specific site(s) and a
|
|
|
|
# single database can manage content for multiple sites.
|
|
|
|
#
|
|
|
|
# We set this site's domain to 'humbughq.com' in populate_db.
|
2012-08-28 18:44:51 +02:00
|
|
|
SITE_ID = 1
|
|
|
|
|
|
|
|
# If you set this to False, Django will make some optimizations so as not
|
|
|
|
# to load the internationalization machinery.
|
|
|
|
USE_I18N = True
|
|
|
|
|
|
|
|
# If you set this to False, Django will not format dates, numbers and
|
|
|
|
# calendars according to the current locale.
|
|
|
|
USE_L10N = True
|
|
|
|
|
|
|
|
# If you set this to False, Django will not use timezone-aware datetimes.
|
|
|
|
USE_TZ = True
|
|
|
|
|
2012-08-28 18:45:32 +02:00
|
|
|
SITE_ROOT = os.path.realpath(os.path.dirname(__file__))
|
|
|
|
TEMPLATE_DIRS = ( os.path.join(SITE_ROOT, '..', 'templates'),)
|
2012-08-28 18:44:51 +02:00
|
|
|
|
|
|
|
# URL that handles the media served from MEDIA_ROOT. Make sure to use a
|
|
|
|
# trailing slash.
|
|
|
|
# Examples: "http://media.lawrence.com/media/", "http://example.com/media/"
|
|
|
|
MEDIA_URL = ''
|
|
|
|
|
|
|
|
# Make this unique, and don't share it with anybody.
|
|
|
|
SECRET_KEY = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'
|
|
|
|
|
2012-09-21 17:08:02 +02:00
|
|
|
# A fixed salt used for hashing in certain places, e.g. email-based
|
|
|
|
# username generation.
|
|
|
|
HASH_SALT = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'
|
2012-09-19 19:39:34 +02:00
|
|
|
|
2012-10-17 22:35:35 +02:00
|
|
|
# Tell the browser to never send our cookies without encryption, e.g.
|
|
|
|
# when executing the initial http -> https redirect.
|
|
|
|
#
|
|
|
|
# Turn it off for local testing because we don't have SSL.
|
|
|
|
if deployed:
|
|
|
|
SESSION_COOKIE_SECURE = True
|
|
|
|
CSRF_COOKIE_SECURE = True
|
|
|
|
|
2012-10-26 21:57:13 +02:00
|
|
|
# Prevent Javascript from reading the CSRF token from cookies. Our code gets
|
|
|
|
# the token from the DOM, which means malicious code could too. But hiding the
|
|
|
|
# cookie will slow down some attackers.
|
|
|
|
CSRF_COOKIE_PATH = '/;HttpOnly'
|
|
|
|
|
2012-10-12 17:04:26 +02:00
|
|
|
# Used just for generating initial passwords and API keys.
|
2012-10-10 16:59:59 +02:00
|
|
|
INITIAL_PASSWORD_SALT = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'
|
2012-10-12 17:04:26 +02:00
|
|
|
INITIAL_API_KEY_SALT = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'
|
2012-10-10 16:59:59 +02:00
|
|
|
|
2012-10-09 22:21:03 +02:00
|
|
|
# A shared secret, used to authenticate different parts of the app to each other.
|
|
|
|
# FIXME: store this password more securely
|
|
|
|
SHARED_SECRET = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'
|
|
|
|
|
2012-11-08 21:49:04 +01:00
|
|
|
# Base URL of the Tornado server
|
|
|
|
# We set it to None when running tests or populate_db.
|
|
|
|
TORNADO_SERVER = 'http://localhost:9993'
|
2012-10-09 22:21:03 +02:00
|
|
|
|
2012-10-09 23:52:48 +02:00
|
|
|
# Make redirects work properly behind a reverse proxy
|
|
|
|
USE_X_FORWARDED_HOST = True
|
|
|
|
|
2012-08-28 18:44:51 +02:00
|
|
|
# List of callables that know how to import templates from various sources.
|
|
|
|
TEMPLATE_LOADERS = (
|
|
|
|
'django.template.loaders.filesystem.Loader',
|
|
|
|
'django.template.loaders.app_directories.Loader',
|
|
|
|
)
|
|
|
|
|
|
|
|
MIDDLEWARE_CLASSES = (
|
|
|
|
'django.middleware.common.CommonMiddleware',
|
|
|
|
'django.contrib.sessions.middleware.SessionMiddleware',
|
|
|
|
'django.middleware.csrf.CsrfViewMiddleware',
|
|
|
|
'django.contrib.auth.middleware.AuthenticationMiddleware',
|
|
|
|
'django.contrib.messages.middleware.MessageMiddleware',
|
2012-10-16 23:52:10 +02:00
|
|
|
'zephyr.middleware.LogRequests',
|
2012-08-28 18:44:51 +02:00
|
|
|
)
|
|
|
|
|
2012-09-21 16:10:36 +02:00
|
|
|
AUTHENTICATION_BACKENDS = ('humbug.backends.EmailAuthBackend',)
|
|
|
|
|
2012-08-28 18:44:51 +02:00
|
|
|
ROOT_URLCONF = 'humbug.urls'
|
|
|
|
|
|
|
|
# Python dotted path to the WSGI application used by Django's runserver.
|
|
|
|
WSGI_APPLICATION = 'humbug.wsgi.application'
|
|
|
|
|
|
|
|
INSTALLED_APPS = (
|
|
|
|
'django.contrib.auth',
|
|
|
|
'django.contrib.contenttypes',
|
|
|
|
'django.contrib.sessions',
|
|
|
|
'django.contrib.sites',
|
|
|
|
'django.contrib.messages',
|
2012-09-06 21:13:15 +02:00
|
|
|
'jstemplate',
|
2012-09-28 22:47:05 +02:00
|
|
|
'confirmation',
|
2012-08-28 18:44:51 +02:00
|
|
|
'zephyr',
|
|
|
|
)
|
|
|
|
|
2012-09-19 17:58:22 +02:00
|
|
|
# Caching
|
|
|
|
CACHES = {
|
|
|
|
'default': {
|
|
|
|
'BACKEND': 'django.core.cache.backends.locmem.LocMemCache',
|
|
|
|
'LOCATION': 'humbug-default-local-cache',
|
|
|
|
'TIMEOUT': 3600,
|
|
|
|
'OPTIONS': {
|
|
|
|
'MAX_ENTRIES': 100000
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-08-28 18:44:51 +02:00
|
|
|
LOGGING = {
|
|
|
|
'version': 1,
|
2012-10-16 22:52:51 +02:00
|
|
|
'disable_existing_loggers': True,
|
2012-09-18 22:40:19 +02:00
|
|
|
'formatters': {
|
|
|
|
'default': {
|
|
|
|
'format': '%(asctime)s %(levelname)-8s %(message)s'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
'handlers': {
|
|
|
|
'console': {
|
|
|
|
'level': 'DEBUG',
|
|
|
|
'class': 'logging.StreamHandler',
|
|
|
|
'formatter': 'default'
|
2012-10-12 23:47:43 +02:00
|
|
|
},
|
|
|
|
'file': {
|
|
|
|
'level': 'DEBUG',
|
|
|
|
'class': 'logging.FileHandler',
|
|
|
|
'formatter': 'default',
|
|
|
|
'filename': 'server.log'
|
2012-09-18 22:40:19 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
'loggers': {
|
2012-10-09 17:41:13 +02:00
|
|
|
'': {
|
2012-10-12 23:47:43 +02:00
|
|
|
'handlers': ['console', 'file'],
|
2012-09-18 22:40:19 +02:00
|
|
|
'level': 'INFO'
|
|
|
|
}
|
|
|
|
}
|
2012-08-28 18:44:51 +02:00
|
|
|
}
|
|
|
|
|
2012-10-15 22:52:08 +02:00
|
|
|
TEMPLATE_CONTEXT_PROCESSORS = (
|
|
|
|
'zephyr.context_processors.add_settings',
|
|
|
|
)
|
|
|
|
|
2012-08-28 18:44:51 +02:00
|
|
|
ACCOUNT_ACTIVATION_DAYS=7
|
2012-10-01 21:03:59 +02:00
|
|
|
EMAIL_USE_TLS = True
|
|
|
|
EMAIL_HOST = 'smtp.gmail.com'
|
|
|
|
EMAIL_HOST_USER = 'humbug@humbughq.com'
|
|
|
|
EMAIL_HOST_PASSWORD = 'xxxxxxxxxxxxxxxx'
|
|
|
|
EMAIL_PORT = 587
|
|
|
|
|
2012-10-02 00:04:44 +02:00
|
|
|
DEFAULT_FROM_EMAIL = "Humbug <humbug@humbughq.com>"
|
2012-09-06 21:15:11 +02:00
|
|
|
|
|
|
|
LOGIN_REDIRECT_URL='/'
|
2012-09-27 19:58:42 +02:00
|
|
|
|
2012-11-06 19:00:05 +01:00
|
|
|
MESSAGE_LOG="all_messages_log." + platform.node()
|
2012-09-28 22:47:05 +02:00
|
|
|
|
2012-10-15 22:34:24 +02:00
|
|
|
if deployed:
|
2012-10-15 22:47:52 +02:00
|
|
|
ALLOW_REGISTER = False
|
2012-10-15 22:52:08 +02:00
|
|
|
FULL_NAVBAR = False
|
2012-10-29 19:56:40 +01:00
|
|
|
HOME_NOT_LOGGED_IN = '/accounts/login'
|
2012-10-15 22:34:24 +02:00
|
|
|
else:
|
2012-10-15 22:47:52 +02:00
|
|
|
ALLOW_REGISTER = True
|
2012-10-15 22:52:08 +02:00
|
|
|
FULL_NAVBAR = True
|
2012-10-29 19:56:40 +01:00
|
|
|
HOME_NOT_LOGGED_IN = '/accounts/home'
|
2012-10-15 22:31:06 +02:00
|
|
|
|
2012-09-28 22:47:05 +02:00
|
|
|
# For testing, you may want to have emails be printed to the console.
|
2012-10-01 21:03:59 +02:00
|
|
|
if not deployed:
|
|
|
|
EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend'
|
2012-10-20 21:25:33 +02:00
|
|
|
|
|
|
|
# Use fast password hashing for creating testing users when not
|
|
|
|
# deployed
|
|
|
|
PASSWORD_HASHERS = (
|
|
|
|
'django.contrib.auth.hashers.SHA1PasswordHasher',
|
|
|
|
)
|