X-Git-Url: https://git.openstreetmap.org./osqa.git/blobdiff_plain/80e81e8ba3e132d6b51a0bb4c794d8f2c1f600d9..508b758ebf7d03317c1f1a14ba6006dd83eedd08:/settings_local.py.dist?ds=sidebyside diff --git a/settings_local.py.dist b/settings_local.py.dist index 053032b..afcc539 100644 --- a/settings_local.py.dist +++ b/settings_local.py.dist @@ -13,7 +13,7 @@ logging.basicConfig( ) #ADMINS and MANAGERS -ADMINS = (('Forum Admin', 'forum@example.com'),) +ADMINS = () MANAGERS = ADMINS DEBUG = False @@ -35,28 +35,20 @@ CACHE_BACKEND = 'file://%s' % os.path.join(os.path.dirname(__file__),'cache').re #CACHE_BACKEND = 'dummy://' SESSION_ENGINE = 'django.contrib.sessions.backends.db' -APP_URL = 'http://' #used by email notif system and RSS +# This should be equal to your domain name, plus the web application context. +# This shouldn't be followed by a trailing slash. +# I.e., http://www.yoursite.com or http://www.hostedsite.com/yourhostapp +APP_URL = 'http://' #LOCALIZATIONS TIME_ZONE = 'America/New_York' -########################### -# -# this will allow running your forum with url like http://site.com/forum -# -# FORUM_SCRIPT_ALIAS = 'forum/' -# -FORUM_SCRIPT_ALIAS = '' #no leading slash, default = '' empty string - - #OTHER SETTINGS USE_I18N = True LANGUAGE_CODE = 'en' -EMAIL_VALIDATION = 'off' #string - on|off - DJANGO_VERSION = 1.1 OSQA_DEFAULT_SKIN = 'default' -DISABLED_MODULES = ['books', 'recaptcha', 'project_badges'] +DISABLED_MODULES = ['books', 'recaptcha', 'project_badges', 'updater']