Statistics
| Branch: | Tag: | Revision:

root / snf-webproject / synnefo / webproject / settings / default / apps.py @ ddfb6278

History | View | Annotate | Download (1.1 kB)

1
# -*- coding: utf-8 -*-
2

    
3
# Core Django project settings
4
##################################
5

    
6
SESSION_ENGINE = "django.contrib.sessions.backends.cached_db"
7

    
8
# List of callables that know how to import templates from various sources.
9
TEMPLATE_LOADERS = (
10
    'django.template.loaders.filesystem.Loader',
11
    'django.template.loaders.app_directories.Loader',
12
)
13

    
14
# This is a django project setting, do not change this unless you know
15
# what you're doing
16
ROOT_URLCONF = 'synnefo.webproject.urls'
17

    
18
# Additional template dirs.
19
TEMPLATE_DIRS = (
20
    '/etc/synnefo/templates/',
21
)
22

    
23
LANGUAGES = (
24
  ('en', 'English'),
25
)
26

    
27
# Local time zone for this installation. Choices can be found here:
28
# http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
29
# although not all choices may be available on all operating systems.
30
# On Unix systems, a value of None will cause Django to use the same
31
# timezone as the operating system.
32
# If running in a Windows environment this must be set to the same as your
33
# system time zone.
34
TIME_ZONE = 'UTC'   # Warning: The API depends on the TIME_ZONE being UTC
35