Renne Rocha | 04644b1 | 2012-08-04 08:28:53 -0300 | [diff] [blame] | 1 | # -*- coding: utf-8 -*- |
Renne Rocha | 2da42a4 | 2012-08-04 08:25:47 -0300 | [diff] [blame] | 2 | # Django settings for dojopuzzles project. |
| 3 | |
Renne Rocha | aad9cbd | 2012-08-09 21:27:43 -0300 | [diff] [blame^] | 4 | DEBUG = False |
Renne Rocha | 2da42a4 | 2012-08-04 08:25:47 -0300 | [diff] [blame] | 5 | TEMPLATE_DEBUG = DEBUG |
| 6 | |
| 7 | ADMINS = ( |
Renne Rocha | 04644b1 | 2012-08-04 08:28:53 -0300 | [diff] [blame] | 8 | ('Renne Rocha', 'me@rennerocha.com'), |
Renne Rocha | 2da42a4 | 2012-08-04 08:25:47 -0300 | [diff] [blame] | 9 | ) |
| 10 | |
| 11 | MANAGERS = ADMINS |
| 12 | |
| 13 | DATABASES = { |
| 14 | 'default': { |
| 15 | 'ENGINE': 'django.db.backends.', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'. |
| 16 | 'NAME': '', # Or path to database file if using sqlite3. |
| 17 | 'USER': '', # Not used with sqlite3. |
| 18 | 'PASSWORD': '', # Not used with sqlite3. |
| 19 | 'HOST': '', # Set to empty string for localhost. Not used with sqlite3. |
| 20 | 'PORT': '', # Set to empty string for default. Not used with sqlite3. |
| 21 | } |
| 22 | } |
| 23 | |
| 24 | # Local time zone for this installation. Choices can be found here: |
| 25 | # http://en.wikipedia.org/wiki/List_of_tz_zones_by_name |
| 26 | # although not all choices may be available on all operating systems. |
| 27 | # On Unix systems, a value of None will cause Django to use the same |
| 28 | # timezone as the operating system. |
| 29 | # If running in a Windows environment this must be set to the same as your |
| 30 | # system time zone. |
Renne Rocha | 04644b1 | 2012-08-04 08:28:53 -0300 | [diff] [blame] | 31 | TIME_ZONE = 'America/Sao_Paulo' |
Renne Rocha | 2da42a4 | 2012-08-04 08:25:47 -0300 | [diff] [blame] | 32 | |
| 33 | # Language code for this installation. All choices can be found here: |
| 34 | # http://www.i18nguy.com/unicode/language-identifiers.html |
Renne Rocha | 04644b1 | 2012-08-04 08:28:53 -0300 | [diff] [blame] | 35 | LANGUAGE_CODE = 'pt-br' |
Renne Rocha | 2da42a4 | 2012-08-04 08:25:47 -0300 | [diff] [blame] | 36 | |
| 37 | SITE_ID = 1 |
| 38 | |
| 39 | # If you set this to False, Django will make some optimizations so as not |
| 40 | # to load the internationalization machinery. |
Renne Rocha | 04644b1 | 2012-08-04 08:28:53 -0300 | [diff] [blame] | 41 | USE_I18N = False |
Renne Rocha | 2da42a4 | 2012-08-04 08:25:47 -0300 | [diff] [blame] | 42 | |
| 43 | # If you set this to False, Django will not format dates, numbers and |
| 44 | # calendars according to the current locale. |
| 45 | USE_L10N = True |
| 46 | |
| 47 | # If you set this to False, Django will not use timezone-aware datetimes. |
| 48 | USE_TZ = True |
| 49 | |
| 50 | # Absolute filesystem path to the directory that will hold user-uploaded files. |
| 51 | # Example: "/home/media/media.lawrence.com/media/" |
| 52 | MEDIA_ROOT = '' |
| 53 | |
| 54 | # URL that handles the media served from MEDIA_ROOT. Make sure to use a |
| 55 | # trailing slash. |
| 56 | # Examples: "http://media.lawrence.com/media/", "http://example.com/media/" |
| 57 | MEDIA_URL = '' |
| 58 | |
| 59 | # Absolute path to the directory static files should be collected to. |
| 60 | # Don't put anything in this directory yourself; store your static files |
| 61 | # in apps' "static/" subdirectories and in STATICFILES_DIRS. |
| 62 | # Example: "/home/media/media.lawrence.com/static/" |
| 63 | STATIC_ROOT = '' |
| 64 | |
| 65 | # URL prefix for static files. |
| 66 | # Example: "http://media.lawrence.com/static/" |
| 67 | STATIC_URL = '/static/' |
| 68 | |
| 69 | # Additional locations of static files |
| 70 | STATICFILES_DIRS = ( |
| 71 | # Put strings here, like "/home/html/static" or "C:/www/django/static". |
| 72 | # Always use forward slashes, even on Windows. |
| 73 | # Don't forget to use absolute paths, not relative paths. |
| 74 | ) |
| 75 | |
| 76 | # List of finder classes that know how to find static files in |
| 77 | # various locations. |
| 78 | STATICFILES_FINDERS = ( |
| 79 | 'django.contrib.staticfiles.finders.FileSystemFinder', |
| 80 | 'django.contrib.staticfiles.finders.AppDirectoriesFinder', |
| 81 | # 'django.contrib.staticfiles.finders.DefaultStorageFinder', |
| 82 | ) |
| 83 | |
| 84 | # Make this unique, and don't share it with anybody. |
| 85 | SECRET_KEY = '8*r#4v4uocog4*0ax4#n+ey$htxqg&y2+$ly3qm7f&#f)*g^(!' |
| 86 | |
| 87 | # List of callables that know how to import templates from various sources. |
| 88 | TEMPLATE_LOADERS = ( |
| 89 | 'django.template.loaders.filesystem.Loader', |
| 90 | 'django.template.loaders.app_directories.Loader', |
| 91 | # 'django.template.loaders.eggs.Loader', |
| 92 | ) |
| 93 | |
| 94 | MIDDLEWARE_CLASSES = ( |
| 95 | 'django.middleware.common.CommonMiddleware', |
| 96 | 'django.contrib.sessions.middleware.SessionMiddleware', |
| 97 | 'django.middleware.csrf.CsrfViewMiddleware', |
| 98 | 'django.contrib.auth.middleware.AuthenticationMiddleware', |
| 99 | 'django.contrib.messages.middleware.MessageMiddleware', |
| 100 | # Uncomment the next line for simple clickjacking protection: |
| 101 | # 'django.middleware.clickjacking.XFrameOptionsMiddleware', |
| 102 | ) |
| 103 | |
| 104 | ROOT_URLCONF = 'dojopuzzles.urls' |
| 105 | |
| 106 | # Python dotted path to the WSGI application used by Django's runserver. |
| 107 | WSGI_APPLICATION = 'dojopuzzles.wsgi.application' |
| 108 | |
| 109 | TEMPLATE_DIRS = ( |
| 110 | # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates". |
| 111 | # Always use forward slashes, even on Windows. |
| 112 | # Don't forget to use absolute paths, not relative paths. |
| 113 | ) |
| 114 | |
| 115 | INSTALLED_APPS = ( |
| 116 | 'django.contrib.auth', |
| 117 | 'django.contrib.contenttypes', |
| 118 | 'django.contrib.sessions', |
| 119 | 'django.contrib.sites', |
| 120 | 'django.contrib.messages', |
| 121 | 'django.contrib.staticfiles', |
Renne Rocha | 04644b1 | 2012-08-04 08:28:53 -0300 | [diff] [blame] | 122 | 'django.contrib.admin', |
| 123 | 'django.contrib.admindocs', |
Renne Rocha | 91fe848 | 2012-08-04 09:15:44 -0300 | [diff] [blame] | 124 | 'problemas', |
| 125 | 'contribuicoes', |
Renne Rocha | 2da42a4 | 2012-08-04 08:25:47 -0300 | [diff] [blame] | 126 | ) |
| 127 | |
| 128 | # A sample logging configuration. The only tangible logging |
| 129 | # performed by this configuration is to send an email to |
| 130 | # the site admins on every HTTP 500 error when DEBUG=False. |
| 131 | # See http://docs.djangoproject.com/en/dev/topics/logging for |
| 132 | # more details on how to customize your logging configuration. |
| 133 | LOGGING = { |
| 134 | 'version': 1, |
| 135 | 'disable_existing_loggers': False, |
| 136 | 'filters': { |
| 137 | 'require_debug_false': { |
| 138 | '()': 'django.utils.log.RequireDebugFalse' |
| 139 | } |
| 140 | }, |
| 141 | 'handlers': { |
| 142 | 'mail_admins': { |
| 143 | 'level': 'ERROR', |
| 144 | 'filters': ['require_debug_false'], |
| 145 | 'class': 'django.utils.log.AdminEmailHandler' |
| 146 | } |
| 147 | }, |
| 148 | 'loggers': { |
| 149 | 'django.request': { |
| 150 | 'handlers': ['mail_admins'], |
| 151 | 'level': 'ERROR', |
| 152 | 'propagate': True, |
| 153 | }, |
| 154 | } |
| 155 | } |
Renne Rocha | 04644b1 | 2012-08-04 08:28:53 -0300 | [diff] [blame] | 156 | |
| 157 | try: |
Renne Rocha | aad9cbd | 2012-08-09 21:27:43 -0300 | [diff] [blame^] | 158 | from dojopuzzles.local_settings import * |
Renne Rocha | 04644b1 | 2012-08-04 08:28:53 -0300 | [diff] [blame] | 159 | except: |
| 160 | pass |