forked from jeffreywugz/osqa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings_local.py
executable file
·64 lines (48 loc) · 1.52 KB
/
settings_local.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# encoding:utf-8
import os.path
SITE_SRC_ROOT = os.path.dirname(__file__)
LOG_FILENAME = 'django.osqa.log'
#for logging
import logging
logging.basicConfig(
filename=os.path.join(SITE_SRC_ROOT, 'log', LOG_FILENAME),
level=logging.INFO,
format='%(pathname)s TIME: %(asctime)s MSG: %(filename)s:%(funcName)s:%(lineno)d %(message)s',)
#ADMINS and MANAGERS
ADMINS = ()
MANAGERS = ADMINS
DEBUG = False
DEBUG_TOOLBAR_CONFIG = {
'INTERCEPT_REDIRECTS': True
}
TEMPLATE_DEBUG = DEBUG
INTERNAL_IPS = ('127.0.0.1',)
# Xamin Notice : Replace following information to what you want
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.mysql',
'NAME': 'ask',
'USER': 'ask',
'PASSWORD': 'YourPassword',
'HOST': 'YourHost',
'PORT': '',
}
}
CACHE_BACKEND = 'file://%s' % os.path.join(os.path.dirname(__file__),'cache').replace('\\','/')
#CACHE_BACKEND = 'dummy://'
SESSION_ENGINE = 'django.contrib.sessions.backends.db'
# 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
# Xamin Notice: Replace following information to what you want
APP_URL = 'http://localhost'
#LOCALIZATIONS
TIME_ZONE = 'Asia/Tehran'
#OTHER SETTINGS
USE_I18N = True
LANGUAGE_CODE = 'en'
DJANGO_VERSION = 1.3
#Xamin Notice : do NOT change the following variable
# (C) Xamin Project, 2014
OSQA_DEFAULT_SKIN = 'xamin'
DISABLED_MODULES = ['books', 'project_badges']