change
[seekgee.git] / settings.py
blob89515bd4fc717d3799c1e4de4ba273e726203d06
1 # Django settings for seekgee project.
3 DEBUG = True
4 TEMPLATE_DEBUG = DEBUG
6 ADMINS = (
7 ('Sina Mahmoodi', 'itz.s1na@gmail.com'),
10 MANAGERS = ADMINS
12 DATABASES = {
13 'default': {
14 'ENGINE': 'django.db.backends.mysql', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
15 'NAME': 'seekgee', # Or path to database file if using sqlite3.
16 'USER': 'seekgee', # Not used with sqlite3.
17 'PASSWORD': 'amsi2012', # Not used with sqlite3.
18 'HOST': 'localhost', # Set to empty string for localhost. Not used with sqlite3.
19 'PORT': '', # Set to empty string for default. Not used with sqlite3.
23 # Local time zone for this installation. Choices can be found here:
24 # http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
25 # although not all choices may be available on all operating systems.
26 # On Unix systems, a value of None will cause Django to use the same
27 # timezone as the operating system.
28 # If running in a Windows environment this must be set to the same as your
29 # system time zone.
30 TIME_ZONE = 'America/Chicago'
32 # Language code for this installation. All choices can be found here:
33 # http://www.i18nguy.com/unicode/language-identifiers.html
34 LANGUAGE_CODE = 'en-us'
36 SITE_ID = 1
38 # If you set this to False, Django will make some optimizations so as not
39 # to load the internationalization machinery.
40 USE_I18N = True
42 # If you set this to False, Django will not format dates, numbers and
43 # calendars according to the current locale
44 USE_L10N = True
46 # Absolute filesystem path to the directory that will hold user-uploaded files.
47 # Example: "/home/media/media.lawrence.com/media/"
48 import os
49 BASE_PATH = os.path.dirname(os.path.abspath(__file__))
51 MEDIA_ROOT = os.path.join(BASE_PATH, 'media')
53 # URL that handles the media served from MEDIA_ROOT. Make sure to use a
54 # trailing slash.
55 # Examples: "http://media.lawrence.com/media/", "http://example.com/media/"
56 MEDIA_URL = '/media/'
58 # Absolute path to the directory static files should be collected to.
59 # Don't put anything in this directory yourself; store your static files
60 # in apps' "static/" subdirectories and in STATICFILES_DIRS.
61 # Example: "/home/media/media.lawrence.com/static/"
62 #STATIC_ROOT = os.path.join(BASE_PATH, 'static')
64 # URL prefix for static files.
65 # Example: "http://media.lawrence.com/static/"
66 STATIC_URL = '/static/'
68 # URL prefix for admin static files -- CSS, JavaScript and images.
69 # Make sure to use a trailing slash.
70 # Examples: "http://foo.com/static/admin/", "/static/admin/".
71 ADMIN_MEDIA_PREFIX = '/static/admin/'
73 # Additional locations of static files
74 STATICFILES_DIRS = (
75 # Put strings here, like "/home/html/static" or "C:/www/django/static".
76 # Always use forward slashes, even on Windows.
77 # Don't forget to use absolute paths, not relative paths.
78 os.path.join(os.path.dirname(__file__), 'static').replace('\\', '/'),
79 os.path.join(BASE_PATH, 'static'),
82 # List of finder classes that know how to find static files in
83 # various locations.
84 STATICFILES_FINDERS = (
85 'django.contrib.staticfiles.finders.FileSystemFinder',
86 'django.contrib.staticfiles.finders.AppDirectoriesFinder',
87 # 'django.contrib.staticfiles.finders.DefaultStorageFinder',
90 # Make this unique, and don't share it with anybody.
91 SECRET_KEY = 'k91_+k3kwv#un-@3zt%pf9$+vta&$m*+x@frns3q(68_tp0co!'
93 # List of callables that know how to import templates from various sources.
94 TEMPLATE_LOADERS = (
95 'django.template.loaders.filesystem.Loader',
96 'django.template.loaders.app_directories.Loader',
97 # 'django.template.loaders.eggs.Loader',
100 MIDDLEWARE_CLASSES = (
101 'django.middleware.common.CommonMiddleware',
102 'django.contrib.sessions.middleware.SessionMiddleware',
103 'django.middleware.csrf.CsrfViewMiddleware',
104 'django.contrib.auth.middleware.AuthenticationMiddleware',
105 'django.contrib.messages.middleware.MessageMiddleware',
108 ROOT_URLCONF = 'seekgee.urls'
110 TEMPLATE_DIRS = (
111 # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
112 # Always use forward slashes, even on Windows.
113 # Don't forget to use absolute paths, not relative paths.
114 os.path.join(os.getcwd(), 'templates'),
117 LOGIN_URL='/login'
119 INSTALLED_APPS = (
120 'django.contrib.auth',
121 'django.contrib.contenttypes',
122 'django.contrib.sessions',
123 'django.contrib.sites',
124 'django.contrib.messages',
125 'qaa',
126 'accounts',
127 'main',
128 'django.contrib.staticfiles',
129 # Uncomment the next line to enable the admin:
130 'django.contrib.admin',
131 # Uncomment the next line to enable admin documentation:
132 # 'django.contrib.admindocs',
135 AUTH_PROFILE_MODULE = 'accounts.Profile'
137 # A sample logging configuration. The only tangible logging
138 # performed by this configuration is to send an email to
139 # the site admins on every HTTP 500 error.
140 # See http://docs.djangoproject.com/en/dev/topics/logging for
141 # more details on how to customize your logging configuration.
142 LOGGING = {
143 'version': 1,
144 'disable_existing_loggers': False,
145 'handlers': {
146 'mail_admins': {
147 'level': 'ERROR',
148 'class': 'django.utils.log.AdminEmailHandler'
151 'loggers': {
152 'django.request': {
153 'handlers': ['mail_admins'],
154 'level': 'ERROR',
155 'propagate': True,