Statistics
| Branch: | Tag: | Revision:

root / snf-quotaholder-app / quotaholder_django / settings.py @ 9a4600b7

History | View | Annotate | Download (2.1 kB)

1
# Django settings for quotaholder.
2

    
3
DEBUG = True
4
TEMPLATE_DEBUG = DEBUG
5

    
6
ADMINS = (
7
    # ('Your Name', 'your_email@domain.com'),
8
)
9

    
10
MANAGERS = ADMINS
11

    
12
# Local time zone for this installation. Choices can be found here:
13
# http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
14
# although not all choices may be available on all operating systems.
15
# On Unix systems, a value of None will cause Django to use the same
16
# timezone as the operating system.
17
# If running in a Windows environment this must be set to the same as your
18
# system time zone.
19
TIME_ZONE = 'UTC'
20

    
21
# Language code for this installation. All choices can be found here:
22
# http://www.i18nguy.com/unicode/language-identifiers.html
23
LANGUAGE_CODE = 'en-us'
24

    
25
SITE_ID = 1
26

    
27
# If you set this to False, Django will make some optimizations so as not
28
# to load the internationalization machinery.
29
USE_I18N = False
30

    
31
# If you set this to False, Django will not format dates, numbers and
32
# calendars according to the current locale
33
USE_L10N = False
34

    
35
# Make this unique, and don't share it with anybody.
36
SECRET_KEY = 'ee=*x%x6sp=hcm7j4zzkvpam27g*7*d59fca-q!azaqma!jx*+'
37

    
38
# List of callables that know how to import templates from various sources.
39
TEMPLATE_LOADERS = (
40
    'django.template.loaders.filesystem.Loader',
41
    'django.template.loaders.app_directories.Loader',
42
#     'django.template.loaders.eggs.Loader',
43
)
44

    
45
MIDDLEWARE_CLASSES = (
46
    'django.middleware.common.CommonMiddleware',
47
    #'django.middleware.transaction.TransactionMiddleware',
48
    #'django.contrib.sessions.middleware.SessionMiddleware',
49
    #'django.middleware.csrf.CsrfViewMiddleware',
50
    #'django.contrib.auth.middleware.AuthenticationMiddleware',
51
    #'django.contrib.messages.middleware.MessageMiddleware',
52
)
53

    
54
TEMPLATE_DIRS = (
55
    # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
56
    # Always use forward slashes, even on Windows.
57
    # Don't forget to use absolute paths, not relative paths.
58
)
59

    
60
INSTALLED_APPS = (
61
    'django.contrib.contenttypes',
62
    'quotaholder_django.quotaholder_app',
63
    'south',
64
    #'django_extensions',
65
)
66

    
67
ROOT_URLCONF = 'quotaholder_django.urls'
68