1 from __future__ import unicode_literals
3 # Django settings for xxx project.
9 # ('Your Name', 'your_email@example.com'),
18 'ENGINE': 'django.db.backends.sqlite3',
19 'NAME': os.path.join(os.path.realpath(__file__), 'db'),
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
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'
38 # If you set this to False, Django will make some optimizations so as not
39 # to load the internationalization machinery.
42 # If you set this to False, Django will not format dates, numbers and
43 # calendars according to the current locale
46 # Absolute filesystem path to the directory that will hold user-uploaded files.
47 # Example: "/home/media/media.lawrence.com/media/"
50 # URL that handles the media served from MEDIA_ROOT. Make sure to use a
52 # Examples: "http://media.lawrence.com/media/", "http://example.com/media/"
55 # Absolute path to the directory static files should be collected to.
56 # Don't put anything in this directory yourself; store your static files
57 # in apps' "static/" subdirectories and in STATICFILES_DIRS.
58 # Example: "/home/media/media.lawrence.com/static/"
61 # URL prefix for static files.
62 # Example: "http://media.lawrence.com/static/"
63 STATIC_URL = '/static/'
65 # URL prefix for admin static files -- CSS, JavaScript and images.
66 # Make sure to use a trailing slash.
67 # Examples: "http://foo.com/static/admin/", "/static/admin/".
68 ADMIN_MEDIA_PREFIX = '/static/admin/'
70 # Additional locations of static files
72 # Put strings here, like "/home/html/static" or "C:/www/django/static".
73 # Always use forward slashes, even on Windows.
74 # Don't forget to use absolute paths, not relative paths.
77 # List of finder classes that know how to find static files in
79 STATICFILES_FINDERS = (
80 'django.contrib.staticfiles.finders.FileSystemFinder',
81 'django.contrib.staticfiles.finders.AppDirectoriesFinder',
82 # 'django.contrib.staticfiles.finders.DefaultStorageFinder',
85 # Make this unique, and don't share it with anybody.
86 SECRET_KEY = 'kv*6pmkq47crqskw%wkst!h7xnisy78zzli@rtklgm#y6o=of!'
88 # List of callables that know how to import templates from various sources.
90 'django.template.loaders.filesystem.Loader',
91 'django.template.loaders.app_directories.Loader',
92 # 'django.template.loaders.eggs.Loader',
95 MIDDLEWARE_CLASSES = (
96 'django.middleware.common.CommonMiddleware',
97 'django.contrib.sessions.middleware.SessionMiddleware',
98 'django.middleware.csrf.CsrfViewMiddleware',
99 'django.contrib.auth.middleware.AuthenticationMiddleware',
100 'django.contrib.messages.middleware.MessageMiddleware',
103 ROOT_URLCONF = 'simple.urls'
106 PROJECT_PATH = os.path.abspath(os.path.dirname(__file__))
109 os.path.join(PROJECT_PATH, 'templates'),
113 'django.contrib.admin',
114 'django.contrib.auth',
115 'django.contrib.contenttypes',
116 'django.contrib.sessions',
117 'django.contrib.sites',
118 'django.contrib.messages',
119 'django.contrib.staticfiles',
124 # A sample logging configuration. The only tangible logging
125 # performed by this configuration is to send an email to
126 # the site admins on every HTTP 500 error.
127 # See http://docs.djangoproject.com/en/dev/topics/logging for
128 # more details on how to customize your logging configuration.
131 'disable_existing_loggers': False,
135 'class': 'django.utils.log.AdminEmailHandler'
140 'handlers': ['mail_admins'],