1 # Django settings for sconf project.
3 SHINKEN_PATH
="/applis/pydev/workspace/shinken"
9 # ('Your Name', 'your_email@domain.com'),
18 'ENGINE': 'django.db.backends.', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
19 'NAME': '', # Or path to database file if using sqlite3.
20 'USER': '', # Not used with sqlite3.
21 'PASSWORD': '', # Not used with sqlite3.
22 'HOST': '', # Set to empty string for localhost. Not used with sqlite3.
23 'PORT': '', # Set to empty string for default. Not used with sqlite3.
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
34 TIME_ZONE
= 'America/Chicago'
36 # Language code for this installation. All choices can be found here:
37 # http://www.i18nguy.com/unicode/language-identifiers.html
38 LANGUAGE_CODE
= 'en-us'
42 # If you set this to False, Django will make some optimizations so as not
43 # to load the internationalization machinery.
46 # If you set this to False, Django will not format dates, numbers and
47 # calendars according to the current locale
50 # Absolute path to the directory that holds media.
51 # Example: "/home/media/media.lawrence.com/"
54 # URL that handles the media served from MEDIA_ROOT. Make sure to use a
55 # trailing slash if there is a path component (optional in other cases).
56 # Examples: "http://media.lawrence.com", "http://example.com/media/"
59 # URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a
61 # Examples: "http://foo.com/media/", "/media/".
62 ADMIN_MEDIA_PREFIX
= '/media/'
64 # Make this unique, and don't share it with anybody.
65 SECRET_KEY
= 'bi@=@_r52s(ji0+=#w&0zak+$0@mo-balpnidf#%r-*@(4-+pz'
67 # List of callables that know how to import templates from various sources.
69 'django.template.loaders.filesystem.Loader',
70 'django.template.loaders.app_directories.Loader',
71 # 'django.template.loaders.eggs.Loader',
74 MIDDLEWARE_CLASSES
= (
75 'django.middleware.common.CommonMiddleware',
76 'django.contrib.sessions.middleware.SessionMiddleware',
77 'django.middleware.csrf.CsrfViewMiddleware',
78 'django.contrib.auth.middleware.AuthenticationMiddleware',
79 'django.contrib.messages.middleware.MessageMiddleware',
82 ROOT_URLCONF
= 'skonf.urls'
85 # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
86 # Always use forward slashes, even on Windows.
87 # Don't forget to use absolute paths, not relative paths.
88 SHINKEN_PATH
+"/skonf/templates"
91 STATICFILES_ROOT
= SHINKEN_PATH
+"/skonf/static"
94 'django.contrib.auth',
95 'django.contrib.contenttypes',
96 'django.contrib.sessions',
97 'django.contrib.sites',
98 'django.contrib.messages'
99 # Uncomment the next line to enable the admin:
100 # 'django.contrib.admin',
101 # Uncomment the next line to enable admin documentation:
102 # 'django.contrib.admindocs',