|
| 1 | +# Django settings for mars_weather project. |
| 2 | +import os |
| 3 | +from os.path import join, normpath, dirname |
| 4 | +import dj_database_url |
| 5 | + |
| 6 | +DEBUG = True |
| 7 | +TEMPLATE_DEBUG = DEBUG |
| 8 | + |
| 9 | +PROJECT_NAME = "Mars Weather" |
| 10 | +PROJECT_AUTHOR = "Ingenology" |
| 11 | + |
| 12 | +ALLOWED_HOSTS = ( |
| 13 | + 'marsweather.ingenology.com', |
| 14 | +) |
| 15 | + |
| 16 | +here = lambda *x: join(normpath(dirname(__file__)), *x) |
| 17 | +DJANGO_ROOT = normpath(here('..')) # path to dir that contains /mars_weather |
| 18 | +rel = lambda * args: os.path.join(DJANGO_ROOT, *args) # rel to DJANGO_ROOT |
| 19 | + |
| 20 | +ADMINS = ( |
| 21 | + ( 'Ingenology', '[email protected]'), |
| 22 | +) |
| 23 | + |
| 24 | +MANAGERS = ADMINS |
| 25 | + |
| 26 | +DATABASES = { |
| 27 | + 'default': dj_database_url.config(), |
| 28 | +} |
| 29 | + |
| 30 | +# Local time zone for this installation. Choices can be found here: |
| 31 | +# http://en.wikipedia.org/wiki/List_of_tz_zones_by_name |
| 32 | +# although not all choices may be available on all operating systems. |
| 33 | +# In a Windows environment this must be set to your system time zone. |
| 34 | +TIME_ZONE = 'America/Chicago' |
| 35 | + |
| 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' |
| 39 | + |
| 40 | +SITE_ID = 1 |
| 41 | + |
| 42 | +# If you set this to False, Django will make some optimizations so as not |
| 43 | +# to load the internationalization machinery. |
| 44 | +USE_I18N = True |
| 45 | + |
| 46 | +# If you set this to False, Django will not format dates, numbers and |
| 47 | +# calendars according to the current locale. |
| 48 | +USE_L10N = True |
| 49 | + |
| 50 | +# If you set this to False, Django will not use timezone-aware datetimes. |
| 51 | +USE_TZ = True |
| 52 | + |
| 53 | +# Absolute filesystem path to the directory that will hold user-uploaded files. |
| 54 | +# Example: "/home/media/media.lawrence.com/media/" |
| 55 | +MEDIA_ROOT = rel('media') |
| 56 | + |
| 57 | +# URL that handles the media served from MEDIA_ROOT. Make sure to use a |
| 58 | +# trailing slash. |
| 59 | +# Examples: "http://media.lawrence.com/media/", "http://example.com/media/" |
| 60 | +MEDIA_URL = '/media/' |
| 61 | + |
| 62 | +# Absolute path to the directory static files should be collected to. |
| 63 | +# Don't put anything in this directory yourself; store your static files |
| 64 | +# in apps' "static/" subdirectories and in STATICFILES_DIRS. |
| 65 | +# Example: "/home/media/media.lawrence.com/static/" |
| 66 | +STATIC_ROOT = rel('static_collected') |
| 67 | + |
| 68 | +# URL prefix for static files. |
| 69 | +# Example: "http://media.lawrence.com/static/" |
| 70 | +STATIC_URL = '/static/' |
| 71 | + |
| 72 | +# Additional locations of static files |
| 73 | +STATICFILES_DIRS = ( |
| 74 | + # Put strings here, like "/home/html/static" or "C:/www/django/static". |
| 75 | + # Always use forward slashes, even on Windows. |
| 76 | + # Don't forget to use absolute paths, not relative paths. |
| 77 | + rel('static'), |
| 78 | +) |
| 79 | + |
| 80 | +# List of finder classes that know how to find static files in |
| 81 | +# various locations. |
| 82 | +STATICFILES_FINDERS = ( |
| 83 | + 'django.contrib.staticfiles.finders.FileSystemFinder', |
| 84 | + 'django.contrib.staticfiles.finders.AppDirectoriesFinder', |
| 85 | +# 'django.contrib.staticfiles.finders.DefaultStorageFinder', |
| 86 | +) |
| 87 | + |
| 88 | +# Make this unique, and don't share it with anybody. |
| 89 | +SECRET_KEY = os.environ.get('DJANGO_SECRET_KEY') |
| 90 | + |
| 91 | +# List of callables that know how to import templates from various sources. |
| 92 | +TEMPLATE_LOADERS = ( |
| 93 | + 'django.template.loaders.filesystem.Loader', |
| 94 | + 'django.template.loaders.app_directories.Loader', |
| 95 | +# 'django.template.loaders.eggs.Loader', |
| 96 | +) |
| 97 | + |
| 98 | +MIDDLEWARE_CLASSES = ( |
| 99 | + 'django.middleware.common.CommonMiddleware', |
| 100 | + #'django.contrib.sessions.middleware.SessionMiddleware', |
| 101 | + #'django.middleware.csrf.CsrfViewMiddleware', |
| 102 | + #'django.contrib.auth.middleware.AuthenticationMiddleware', |
| 103 | + #'django.contrib.messages.middleware.MessageMiddleware', |
| 104 | + # Uncomment the next line for simple clickjacking protection: |
| 105 | + # 'django.middleware.clickjacking.XFrameOptionsMiddleware', |
| 106 | +) |
| 107 | + |
| 108 | +ROOT_URLCONF = 'mars_weather.urls' |
| 109 | + |
| 110 | +# Python dotted path to the WSGI application used by Django's runserver. |
| 111 | +WSGI_APPLICATION = 'mars_weather.wsgi.application' |
| 112 | + |
| 113 | +TEMPLATE_DIRS = ( |
| 114 | + # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates". |
| 115 | + # Always use forward slashes, even on Windows. |
| 116 | + # Don't forget to use absolute paths, not relative paths. |
| 117 | + rel('templates'), |
| 118 | +) |
| 119 | + |
| 120 | +INSTALLED_APPS = ( |
| 121 | + #'django.contrib.auth', |
| 122 | + 'django.contrib.contenttypes', |
| 123 | + #'django.contrib.sessions', |
| 124 | + #'django.contrib.sites', |
| 125 | + #'django.contrib.messages', |
| 126 | + 'django.contrib.staticfiles', |
| 127 | + # Uncomment the next line to enable the admin: |
| 128 | + # 'django.contrib.admin', |
| 129 | + # Uncomment the next line to enable admin documentation: |
| 130 | + # 'django.contrib.admindocs', |
| 131 | + 'south', |
| 132 | + 'gunicorn', |
| 133 | + 'rest_framework', |
| 134 | + 'rems', |
| 135 | +) |
| 136 | + |
| 137 | +# A sample logging configuration. The only tangible logging |
| 138 | +# performed by this configuration is to send an email to |
| 139 | +# the site admins on every HTTP 500 error when DEBUG=False. |
| 140 | +# See http://docs.djangoproject.com/en/dev/topics/logging for |
| 141 | +# more details on how to customize your logging configuration. |
| 142 | +LOGGING = { |
| 143 | + 'version': 1, |
| 144 | + 'disable_existing_loggers': False, |
| 145 | + 'filters': { |
| 146 | + 'require_debug_false': { |
| 147 | + '()': 'django.utils.log.RequireDebugFalse' |
| 148 | + } |
| 149 | + }, |
| 150 | + 'handlers': { |
| 151 | + 'mail_admins': { |
| 152 | + 'level': 'ERROR', |
| 153 | + 'filters': ['require_debug_false'], |
| 154 | + 'class': 'django.utils.log.AdminEmailHandler' |
| 155 | + } |
| 156 | + }, |
| 157 | + 'loggers': { |
| 158 | + 'django.request': { |
| 159 | + 'handlers': ['mail_admins'], |
| 160 | + 'level': 'ERROR', |
| 161 | + 'propagate': True, |
| 162 | + }, |
| 163 | + } |
| 164 | +} |
0 commit comments