Skip to content

Instantly share code, notes, and snippets.

@wboykinm
Created September 20, 2012 19:04
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 wboykinm/3757722 to your computer and use it in GitHub Desktop.
Save wboykinm/3757722 to your computer and use it in GitHub Desktop.
settings
"""
Configuration settings for The Public Mapping Project
This file contains application settings for the web application,
The Public Mapping Project. This file requires a local configuration
file that contains site- and machine-specific configuration settings
in /projects/PublicMapping/local/settings.ini
This file is part of The Public Mapping Project
https://github.com/PublicMapping/
License:
Copyright 2010 Micah Altman, Michael McDonald
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
Author:
David Zwarg, Andrew Jennings, Kenny Shepard
"""
# Django settings for publicmapping project.
DEBUG = False
TEMPLATE_DEBUG = DEBUG
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
# Use these settings to localize numbers within the application
USE_L10N = True
NUMBER_GROUPING = 3
USE_THOUSAND_SEPARATOR = True
# URL that handles the media served from MEDIA_ROOT. Make sure to use a
# trailing slash if there is a path component (optional in other cases).
# Examples: "http://media.lawrence.com", "http://example.com/media/"
MEDIA_URL = '/site-media/'
# URL that handles the media served from STATIC_ROOT. Make sure to
# use a trailing slash
STATIC_URL = '/static-media/'
# Sessions expire when browser is close
SESSION_EXPIRE_AT_BROWSER_CLOSE = True
# Require https connections to send cookies
SESSION_COOKIE_SECURE = False
# 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',
# 'django.template.loaders.eggs.load_template_source',
)
# configure cache, according to guidelines for configuring django's
# cache framework: http://docs.djangoproject.com/en/1.0/topics/cache
#CACHE_BACKEND = 'locmem:///?timeout=3600&max_entries=400'
#CACHE_MIDDLEWARE_SECONDS = 3600
#CACHE_MIDDLEWARE_KEY_PREFIX = ''
# Middleware classes. Please note that cache middleware MUST be placed in
# the first and last positions of the middleware classes. Order matters.
MIDDLEWARE_CLASSES = (
# 'django.middleware.cache.UpdateCacheMiddleware',
'django.middleware.gzip.GZipMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
'django.middleware.common.CommonMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
# Uncomment the following line to enable browser-level localization selection
'django.middleware.locale.LocaleMiddleware',
# 'django.middleware.cache.FetchFromCacheMiddleware',
)
TEMPLATE_CONTEXT_PROCESSORS = (
'django.contrib.auth.context_processors.auth',
'django.core.context_processors.debug',
'django.core.context_processors.i18n',
'django.core.context_processors.media',
'django.contrib.messages.context_processors.messages',
'publicmapping.context_processors.banner_image',
)
AUTH_PROFILE_MODULE = 'redistricting.Profile'
ROOT_URLCONF = 'publicmapping.urls'
# Settings for django-celery process queue
import djcelery
djcelery.setup_loader()
BROKER_URL = 'django://'
from datetime import timedelta
CELERYBEAT_SCHEDULE = {
'cleanup-sessions': {
'task': 'redistricting.tasks.cleanup',
'schedule': timedelta(hours=1),
'args': None
},
}
INSTALLED_APPS = (
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.humanize',
'django.contrib.sessions',
'django.contrib.sites',
'django.contrib.admin',
'django.contrib.gis',
'django.contrib.comments',
'djcelery',
'djcelery.transport',
'redistricting',
'tagging',
'rosetta',
'django.contrib.staticfiles',
'compressor',
)
# Compressor settings
COMPRESS_ENABLED = not DEBUG
COMPRESS_PARSER = 'compressor.parser.HtmlParser'
STATICFILES_FINDERS = (
'django.contrib.staticfiles.finders.FileSystemFinder',
'django.contrib.staticfiles.finders.AppDirectoriesFinder',
'compressor.finders.CompressorFinder',
)
# end Compressor settings
#
# Settings specific to The Public Mapping Project
#
# This is the base url for the application, where the login page is
LOGIN_URL = '/'
# Where the user is redirected after login
LOGIN_REDIRECT_URL = '/admin/'
# Enable logging
import sys
LOGGING = {
'version': 1,
'handlers': {
'default': {
'class': 'logging.StreamHandler',
'stream': sys.stderr
}
},
'loggers': {
'django': {
'handlers':['default'],
'level': 'CRITICAL'
},
'redistricting': {
'handlers':['default'],
'level': 'DEBUG' if DEBUG else 'WARNING'
}
}
}
ADMINS = (
('jethro',
'vtcraghead@gmail.com'),
)
MANAGERS = ADMINS
SECRET_KEY = '9-!@tfqgf^6e!vl_*^^(0tp9n$bie7y0vj$$pm45ct%ost@8_h'
WEB_TEMP = '/projects/DistrictBuilder//../local/reports/'
REPORTS_ENABLED = None
TIME_ZONE = 'US/Eastern'
LANGUAGES = (
('en', 'English'),
)
# Modify to change the language of the application
LANGUAGE_CODE = 'en'
#
# Automatically generated settings.
#
DATABASES = {
'default': {
'ENGINE': 'django.contrib.gis.db.backends.postgis',
'NAME': 'publicmapping3',
'USER': 'publicmapping',
'PASSWORD': 'snupipo05',
'HOST': 'localhost',
}
}
MAP_SERVER = 'ec2-23-22-217-177.compute-1.amazonaws.com:8080/geoserver/'
BASE_MAPS = 'None'
MAP_SERVER_NS = 'gmu'
MAP_SERVER_NSHREF = 'http://gmu.azavea.com/'
FEATURE_LIMIT = 100
MAP_SERVER_USER = 'GEOSERVER-ADMIN-USER'
MAP_SERVER_PASS = 'GEOSERVER-ADMIN-PASS'
EMAIL_HOST = 'localhost'
EMAIL_PORT = 25
EMAIL_HOST_USER = ''
EMAIL_HOST_PASSWORD = ''
EMAIL_SUBJECT_PREFIX = 'None '
MEDIA_ROOT = '/projects/DistrictBuilder//django/publicmapping/site-media/'
STATIC_ROOT = '/projects/DistrictBuilder//django/publicmapping/static-media/'
TEMPLATE_DIRS = (
'/projects/DistrictBuilder//django/publicmapping/templates',
)
SLD_ROOT = '/projects/DistrictBuilder//sld/'
CONCURRENT_SESSIONS = 5
SESSION_TIMEOUT = 15
GA_ACCOUNT = None
GA_DOMAIN = None
MAX_UPLOAD_SIZE = 5300 * 1024
FIX_UNASSIGNED_MIN_PERCENT = 99
FIX_UNASSIGNED_COMPARATOR_SUBJECT = 'poptot'
MAX_UNDOS_DURING_EDIT = 0
MAX_UNDOS_AFTER_EDIT = 0
LEADERBOARD_MAX_RANKED = 10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment