Skip to content
Extraits de code Groupes Projets
base.py 4,07 ko
Newer Older
  • Learn to ignore specific revisions
  • Yohan Boniface's avatar
    Yohan Boniface a validé
    """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',
    
        'endless_pagination',
    
    Yohan Boniface's avatar
    Yohan Boniface a validé
        'youmap',
    
    Yohan Boniface's avatar
    Yohan Boniface a validé
    
        #'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 = (
    
    Yohan Boniface's avatar
    Yohan Boniface a validé
        # Fabric will collect leaflet and draw in this dir
        os.path.join(PROJECT_DIR, 'remote_static'),
    
    Yohan Boniface's avatar
    Yohan Boniface a validé
        os.path.join(PROJECT_DIR, 'static'),
    )
    
    #==============================================================================
    # Templates
    #==============================================================================
    
    TEMPLATE_DIRS = (
        os.path.join(PROJECT_DIR, 'templates'),
    )
    
    TEMPLATE_CONTEXT_PROCESSORS += (
    
        'django.core.context_processors.request',
    
    Yohan Boniface's avatar
    Yohan Boniface a validé
    )
    
    #==============================================================================
    # Middleware
    #==============================================================================
    
    MIDDLEWARE_CLASSES += (
    
    Yohan Boniface's avatar
    Yohan Boniface a validé
        # 'django.middleware.transaction.TransactionMiddleware',
    
    Yohan Boniface's avatar
    Yohan Boniface a validé
    )
    
    #==============================================================================
    # Auth / security
    #==============================================================================
    
    AUTHENTICATION_BACKENDS += (
    )
    
    #==============================================================================
    # Miscellaneous project settings
    #==============================================================================
    
    #==============================================================================
    # Third party app settings
    #==============================================================================