]> git.openstreetmap.org Git - osqa.git/blob - settings_local.py.dist
General cleanup. Moved many hardcoded stuff still left in the code to an admin option...
[osqa.git] / settings_local.py.dist
1 # encoding:utf-8
2 import os.path
3
4 SITE_SRC_ROOT = os.path.dirname(__file__)
5 LOG_FILENAME = 'django.osqa.log'
6
7 #for logging
8 import logging
9 logging.basicConfig(
10     filename=os.path.join(SITE_SRC_ROOT, 'log', LOG_FILENAME),
11     level=logging.ERROR,
12     format='%(pathname)s TIME: %(asctime)s MSG: %(filename)s:%(funcName)s:%(lineno)d %(message)s',
13 )
14
15 #ADMINS and MANAGERS
16 ADMINS = (('Forum Admin', 'forum@example.com'),)
17 MANAGERS = ADMINS
18
19 DEBUG = False
20 DEBUG_TOOLBAR_CONFIG = {
21     'INTERCEPT_REDIRECTS': True
22 }
23 TEMPLATE_DEBUG = DEBUG
24 INTERNAL_IPS = ('127.0.0.1',)
25
26 DATABASE_NAME = ''             # Or path to database file if using sqlite3.
27 DATABASE_USER = ''               # Not used with sqlite3.
28 DATABASE_PASSWORD = ''               # Not used with sqlite3.
29 DATABASE_ENGINE = ''  #mysql, etc
30 DATABASE_HOST = ''
31 DATABASE_PORT = ''
32
33 CACHE_BACKEND = 'file://%s' % os.path.join(os.path.dirname(__file__),'cache').replace('\\','/')
34 #CACHE_BACKEND = 'dummy://'
35 SESSION_ENGINE = 'django.contrib.sessions.backends.db'
36
37 APP_URL = 'http://' #used by email notif system and RSS
38
39 #LOCALIZATIONS
40 TIME_ZONE = 'America/New_York'
41
42 ###########################
43 #
44 #   this will allow running your forum with url like http://site.com/forum
45 #
46 #   FORUM_SCRIPT_ALIAS = 'forum/'
47 #
48 FORUM_SCRIPT_ALIAS = '' #no leading slash, default = '' empty string
49
50
51 #OTHER SETTINGS
52
53 USE_I18N = True
54 LANGUAGE_CODE = 'en'
55
56 EMAIL_VALIDATION = 'off' #string - on|off
57
58 DJANGO_VERSION = 1.1
59 OSQA_DEFAULT_SKIN = 'default'
60
61 DISABLED_MODULES = ['books', 'recaptcha', 'project_badges']