adicionando logo svg do luquinhas =)
[cascardo/eventmanager.git] / settings.py
1 # Django settings for eventmanager project.
2 import os
3
4 DEBUG = True
5 TEMPLATE_DEBUG = DEBUG
6
7 LOCAL_INSTANCE = os.path.dirname(__file__)
8
9 ADMINS = (
10     # ('Your Name', 'your_email@domain.com'),
11 )
12
13 MANAGERS = ADMINS
14
15 DATABASE_ENGINE = 'sqlite3'                            # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'ado_mssql'.
16 DATABASE_NAME = os.path.join(LOCAL_INSTANCE, 'db')     # Or path to database file if using sqlite3.
17 DATABASE_USER = ''             # Not used with sqlite3.
18 DATABASE_PASSWORD = ''         # Not used with sqlite3.
19 DATABASE_HOST = ''             # Set to empty string for localhost. Not used with sqlite3.
20 DATABASE_PORT = ''             # Set to empty string for default. Not used with sqlite3.
21
22 # Local time zone for this installation. Choices can be found here:
23 # http://www.postgresql.org/docs/8.1/static/datetime-keywords.html#DATETIME-TIMEZONE-SET-TABLE
24 # although not all variations may be possible on all operating systems.
25 # If running in a Windows environment this must be set to the same as your
26 # system time zone.
27 TIME_ZONE = 'America/Chicago'
28
29 # Language code for this installation. All choices can be found here:
30 # http://www.w3.org/TR/REC-html40/struct/dirlang.html#langcodes
31 # http://blogs.law.harvard.edu/tech/stories/storyReader$15
32 LANGUAGE_CODE = 'pt-br'
33
34 SITE_ID = 1
35
36 # If you set this to False, Django will make some optimizations so as not
37 # to load the internationalization machinery.
38 USE_I18N = True
39
40 # Absolute path to the directory that holds media.
41 # Example: "/home/media/media.lawrence.com/"
42 MEDIA_ROOT = ''
43
44 # URL that handles the media served from MEDIA_ROOT.
45 # Example: "http://media.lawrence.com"
46 MEDIA_URL = ''
47
48 # URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a
49 # trailing slash.
50 # Examples: "http://foo.com/media/", "/media/".
51 ADMIN_MEDIA_PREFIX = '/media/'
52
53 # Make this unique, and don't share it with anybody.
54 SECRET_KEY = '0o&_uplzm5hi&rt3pc+tv2+5)v5@*x5^#$l=r_bb#rx0gygv@l'
55
56 # List of callables that know how to import templates from various sources.
57 TEMPLATE_LOADERS = (
58     'django.template.loaders.filesystem.load_template_source',
59     'django.template.loaders.app_directories.load_template_source',
60 #     'django.template.loaders.eggs.load_template_source',
61 )
62
63 MIDDLEWARE_CLASSES = (
64     'django.middleware.common.CommonMiddleware',
65     'django.contrib.sessions.middleware.SessionMiddleware',
66     'django.contrib.auth.middleware.AuthenticationMiddleware',
67     'django.middleware.doc.XViewMiddleware',
68 )
69
70 ROOT_URLCONF = 'eventmanager.urls'
71
72 TEMPLATE_DIRS = (
73     # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
74     # Always use forward slashes, even on Windows.
75     # Don't forget to use absolute paths, not relative paths.
76     os.path.join(LOCAL_INSTANCE, 'templates'),
77 )
78
79 INSTALLED_APPS = (
80     'django.contrib.auth',
81     'django.contrib.contenttypes',
82     'django.contrib.sessions',
83     #'django.contrib.sites',
84     'django.contrib.admin',
85     'eventmanager.eventos',
86     'eventmanager.conteudo',
87 )