2012-11-20 03:47:19 -06:00
|
|
|
"""Base settings shared by all environments"""
|
|
|
|
# Import global settings to make it easier to extend settings.
|
|
|
|
from django.conf.global_settings import * # pylint: disable=W0614,W0401
|
|
|
|
|
|
|
|
#==============================================================================
|
|
|
|
# Generic Django project settings
|
|
|
|
#==============================================================================
|
|
|
|
|
|
|
|
DEBUG = True
|
|
|
|
TEMPLATE_DEBUG = DEBUG
|
|
|
|
|
|
|
|
SITE_ID = 1
|
|
|
|
# Local time zone for this installation. Choices can be found here:
|
|
|
|
# http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
|
|
|
|
TIME_ZONE = 'UTC'
|
|
|
|
USE_TZ = True
|
|
|
|
USE_I18N = True
|
|
|
|
USE_L10N = True
|
|
|
|
LANGUAGE_CODE = 'en'
|
|
|
|
LANGUAGES = (
|
|
|
|
('en', 'English'),
|
|
|
|
)
|
|
|
|
|
|
|
|
# Make this unique, and don't share it with anybody.
|
|
|
|
SECRET_KEY = 'j6fly6aomgo6!3_$v#9kvhw-%wgs1@1l6x+4nr73tmn40=&_@&'
|
|
|
|
|
|
|
|
INSTALLED_APPS = (
|
|
|
|
'chickpea',
|
|
|
|
'foundation',
|
2012-12-07 06:40:57 -06:00
|
|
|
'endless_pagination',
|
2012-12-13 11:10:45 -06:00
|
|
|
'youmap',
|
2012-12-16 08:10:00 -06:00
|
|
|
'sesql',
|
2012-12-22 05:42:29 -06:00
|
|
|
'compressor',
|
2012-11-20 03:47:19 -06:00
|
|
|
|
|
|
|
#'south',
|
|
|
|
|
|
|
|
'django.contrib.auth',
|
|
|
|
'django.contrib.contenttypes',
|
|
|
|
'django.contrib.sessions',
|
|
|
|
'django.contrib.sites',
|
|
|
|
'django.contrib.messages',
|
|
|
|
'django.contrib.staticfiles',
|
|
|
|
'django.contrib.admin',
|
|
|
|
'django.contrib.admindocs',
|
|
|
|
'django.contrib.gis',
|
|
|
|
)
|
|
|
|
|
|
|
|
#==============================================================================
|
|
|
|
# Calculation of directories relative to the project module location
|
|
|
|
#==============================================================================
|
|
|
|
|
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
import youmap as project_module
|
|
|
|
|
|
|
|
PROJECT_DIR = os.path.dirname(os.path.realpath(project_module.__file__))
|
|
|
|
|
|
|
|
PYTHON_BIN = os.path.dirname(sys.executable)
|
|
|
|
ve_path = os.path.dirname(os.path.dirname(os.path.dirname(PROJECT_DIR)))
|
|
|
|
# Assume that the presence of 'activate_this.py' in the python bin/
|
|
|
|
# directory means that we're running in a virtual environment.
|
|
|
|
if os.path.exists(os.path.join(PYTHON_BIN, 'activate_this.py')):
|
|
|
|
# We're running with a virtualenv python executable.
|
|
|
|
VAR_ROOT = os.path.join(os.path.dirname(PYTHON_BIN), 'var')
|
|
|
|
elif ve_path and os.path.exists(os.path.join(ve_path, 'bin',
|
|
|
|
'activate_this.py')):
|
|
|
|
# We're running in [virtualenv_root]/src/[project_name].
|
|
|
|
VAR_ROOT = os.path.join(ve_path, 'var')
|
|
|
|
else:
|
|
|
|
# Set the variable root to a path in the project which is
|
|
|
|
# ignored by the repository.
|
|
|
|
VAR_ROOT = os.path.join(PROJECT_DIR, 'var')
|
|
|
|
|
|
|
|
if not os.path.exists(VAR_ROOT):
|
|
|
|
os.mkdir(VAR_ROOT)
|
|
|
|
|
|
|
|
#==============================================================================
|
|
|
|
# Project URLS and media settings
|
|
|
|
#==============================================================================
|
|
|
|
|
|
|
|
ROOT_URLCONF = 'youmap.urls'
|
|
|
|
|
|
|
|
LOGIN_URL = '/login/'
|
|
|
|
LOGOUT_URL = '/logout/'
|
|
|
|
LOGIN_REDIRECT_URL = '/'
|
|
|
|
|
|
|
|
STATIC_URL = '/static/'
|
|
|
|
MEDIA_URL = '/uploads/'
|
|
|
|
|
|
|
|
STATIC_ROOT = os.path.join(VAR_ROOT, 'static')
|
|
|
|
MEDIA_ROOT = os.path.join(VAR_ROOT, 'uploads')
|
|
|
|
|
|
|
|
STATICFILES_DIRS = (
|
2012-11-22 13:03:36 -06:00
|
|
|
# Fabric will collect leaflet and draw in this dir
|
|
|
|
os.path.join(PROJECT_DIR, 'remote_static'),
|
2012-11-20 03:47:19 -06:00
|
|
|
os.path.join(PROJECT_DIR, 'static'),
|
|
|
|
)
|
|
|
|
|
2012-12-22 05:42:29 -06:00
|
|
|
STATICFILES_FINDERS += (
|
|
|
|
'compressor.finders.CompressorFinder',
|
|
|
|
)
|
|
|
|
|
2012-11-20 03:47:19 -06:00
|
|
|
#==============================================================================
|
|
|
|
# Templates
|
|
|
|
#==============================================================================
|
|
|
|
|
|
|
|
TEMPLATE_DIRS = (
|
|
|
|
os.path.join(PROJECT_DIR, 'templates'),
|
|
|
|
)
|
|
|
|
|
|
|
|
TEMPLATE_CONTEXT_PROCESSORS += (
|
2012-12-07 06:40:57 -06:00
|
|
|
'django.core.context_processors.request',
|
2012-11-20 03:47:19 -06:00
|
|
|
)
|
|
|
|
|
|
|
|
#==============================================================================
|
|
|
|
# Middleware
|
|
|
|
#==============================================================================
|
|
|
|
|
|
|
|
MIDDLEWARE_CLASSES += (
|
2012-12-06 11:09:45 -06:00
|
|
|
# 'django.middleware.transaction.TransactionMiddleware',
|
2012-11-20 03:47:19 -06:00
|
|
|
)
|
|
|
|
|
|
|
|
#==============================================================================
|
|
|
|
# Auth / security
|
|
|
|
#==============================================================================
|
|
|
|
|
|
|
|
AUTHENTICATION_BACKENDS += (
|
|
|
|
)
|
|
|
|
|
|
|
|
#==============================================================================
|
|
|
|
# Miscellaneous project settings
|
|
|
|
#==============================================================================
|
|
|
|
|
|
|
|
#==============================================================================
|
|
|
|
# Third party app settings
|
|
|
|
#==============================================================================
|
2012-12-22 05:42:29 -06:00
|
|
|
COMPRESS_ENABLED = True
|
|
|
|
COMPRESS_OFFLINE = True
|