~ubuntu-branches/debian/sid/python-django/sid

« back to all changes in this revision

Viewing changes to django/conf/project_template/project_name/settings.py

  • Committer: Package Import Robot
  • Author(s): Luke Faraone
  • Date: 2013-11-07 15:33:49 UTC
  • mfrom: (1.3.12)
  • Revision ID: package-import@ubuntu.com-20131107153349-e31sc149l2szs3jb
Tags: 1.6-1
* New upstream version. Closes: #557474, #724637.
* python-django now also suggests the installation of ipython,
  bpython, python-django-doc, and libgdal1.
  Closes: #636511, #686333, #704203
* Set package maintainer to Debian Python Modules Team.
* Bump standards version to 3.9.5, no changes needed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Django settings for {{ project_name }} project.
2
 
 
 
1
"""
 
2
Django settings for {{ project_name }} project.
 
3
 
 
4
For more information on this file, see
 
5
https://docs.djangoproject.com/en/{{ docs_version }}/topics/settings/
 
6
 
 
7
For the full list of settings and their values, see
 
8
https://docs.djangoproject.com/en/{{ docs_version }}/ref/settings/
 
9
"""
 
10
 
 
11
# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
 
12
import os
 
13
BASE_DIR = os.path.dirname(os.path.dirname(__file__))
 
14
 
 
15
 
 
16
# Quick-start development settings - unsuitable for production
 
17
# See https://docs.djangoproject.com/en/{{ docs_version }}/howto/deployment/checklist/
 
18
 
 
19
# SECURITY WARNING: keep the secret key used in production secret!
 
20
SECRET_KEY = '{{ secret_key }}'
 
21
 
 
22
# SECURITY WARNING: don't run with debug turned on in production!
3
23
DEBUG = True
4
 
TEMPLATE_DEBUG = DEBUG
5
 
 
6
 
ADMINS = (
7
 
    # ('Your Name', 'your_email@example.com'),
8
 
)
9
 
 
10
 
MANAGERS = ADMINS
11
 
 
12
 
DATABASES = {
13
 
    'default': {
14
 
        'ENGINE': 'django.db.backends.', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'.
15
 
        'NAME': '',                      # Or path to database file if using sqlite3.
16
 
        # The following settings are not used with sqlite3:
17
 
        'USER': '',
18
 
        'PASSWORD': '',
19
 
        'HOST': '',                      # Empty for localhost through domain sockets or '127.0.0.1' for localhost through TCP.
20
 
        'PORT': '',                      # Set to empty string for default.
21
 
    }
22
 
}
23
 
 
24
 
# Hosts/domain names that are valid for this site; required if DEBUG is False
25
 
# See https://docs.djangoproject.com/en/1.5/ref/settings/#allowed-hosts
 
24
 
 
25
TEMPLATE_DEBUG = True
 
26
 
26
27
ALLOWED_HOSTS = []
27
28
 
28
 
# Local time zone for this installation. Choices can be found here:
29
 
# http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
30
 
# although not all choices may be available on all operating systems.
31
 
# In a Windows environment this must be set to your system time zone.
32
 
TIME_ZONE = 'America/Chicago'
33
 
 
34
 
# Language code for this installation. All choices can be found here:
35
 
# http://www.i18nguy.com/unicode/language-identifiers.html
36
 
LANGUAGE_CODE = 'en-us'
37
 
 
38
 
SITE_ID = 1
39
 
 
40
 
# If you set this to False, Django will make some optimizations so as not
41
 
# to load the internationalization machinery.
42
 
USE_I18N = True
43
 
 
44
 
# If you set this to False, Django will not format dates, numbers and
45
 
# calendars according to the current locale.
46
 
USE_L10N = True
47
 
 
48
 
# If you set this to False, Django will not use timezone-aware datetimes.
49
 
USE_TZ = True
50
 
 
51
 
# Absolute filesystem path to the directory that will hold user-uploaded files.
52
 
# Example: "/var/www/example.com/media/"
53
 
MEDIA_ROOT = ''
54
 
 
55
 
# URL that handles the media served from MEDIA_ROOT. Make sure to use a
56
 
# trailing slash.
57
 
# Examples: "http://example.com/media/", "http://media.example.com/"
58
 
MEDIA_URL = ''
59
 
 
60
 
# Absolute path to the directory static files should be collected to.
61
 
# Don't put anything in this directory yourself; store your static files
62
 
# in apps' "static/" subdirectories and in STATICFILES_DIRS.
63
 
# Example: "/var/www/example.com/static/"
64
 
STATIC_ROOT = ''
65
 
 
66
 
# URL prefix for static files.
67
 
# Example: "http://example.com/static/", "http://static.example.com/"
68
 
STATIC_URL = '/static/'
69
 
 
70
 
# Additional locations of static files
71
 
STATICFILES_DIRS = (
72
 
    # Put strings here, like "/home/html/static" or "C:/www/django/static".
73
 
    # Always use forward slashes, even on Windows.
74
 
    # Don't forget to use absolute paths, not relative paths.
75
 
)
76
 
 
77
 
# List of finder classes that know how to find static files in
78
 
# various locations.
79
 
STATICFILES_FINDERS = (
80
 
    'django.contrib.staticfiles.finders.FileSystemFinder',
81
 
    'django.contrib.staticfiles.finders.AppDirectoriesFinder',
82
 
#    'django.contrib.staticfiles.finders.DefaultStorageFinder',
83
 
)
84
 
 
85
 
# Make this unique, and don't share it with anybody.
86
 
SECRET_KEY = '{{ secret_key }}'
87
 
 
88
 
# List of callables that know how to import templates from various sources.
89
 
TEMPLATE_LOADERS = (
90
 
    'django.template.loaders.filesystem.Loader',
91
 
    'django.template.loaders.app_directories.Loader',
92
 
#     'django.template.loaders.eggs.Loader',
 
29
 
 
30
# Application definition
 
31
 
 
32
INSTALLED_APPS = (
 
33
    'django.contrib.admin',
 
34
    'django.contrib.auth',
 
35
    'django.contrib.contenttypes',
 
36
    'django.contrib.sessions',
 
37
    'django.contrib.messages',
 
38
    'django.contrib.staticfiles',
93
39
)
94
40
 
95
41
MIDDLEWARE_CLASSES = (
 
42
    'django.contrib.sessions.middleware.SessionMiddleware',
96
43
    'django.middleware.common.CommonMiddleware',
97
 
    'django.contrib.sessions.middleware.SessionMiddleware',
98
44
    'django.middleware.csrf.CsrfViewMiddleware',
99
45
    'django.contrib.auth.middleware.AuthenticationMiddleware',
100
46
    'django.contrib.messages.middleware.MessageMiddleware',
101
 
    # Uncomment the next line for simple clickjacking protection:
102
 
    # 'django.middleware.clickjacking.XFrameOptionsMiddleware',
 
47
    'django.middleware.clickjacking.XFrameOptionsMiddleware',
103
48
)
104
49
 
105
50
ROOT_URLCONF = '{{ project_name }}.urls'
106
51
 
107
 
# Python dotted path to the WSGI application used by Django's runserver.
108
52
WSGI_APPLICATION = '{{ project_name }}.wsgi.application'
109
53
 
110
 
TEMPLATE_DIRS = (
111
 
    # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
112
 
    # Always use forward slashes, even on Windows.
113
 
    # Don't forget to use absolute paths, not relative paths.
114
 
)
115
 
 
116
 
INSTALLED_APPS = (
117
 
    'django.contrib.auth',
118
 
    'django.contrib.contenttypes',
119
 
    'django.contrib.sessions',
120
 
    'django.contrib.sites',
121
 
    'django.contrib.messages',
122
 
    'django.contrib.staticfiles',
123
 
    # Uncomment the next line to enable the admin:
124
 
    # 'django.contrib.admin',
125
 
    # Uncomment the next line to enable admin documentation:
126
 
    # 'django.contrib.admindocs',
127
 
)
128
 
 
129
 
SESSION_SERIALIZER = 'django.contrib.sessions.serializers.JSONSerializer'
130
 
 
131
 
# A sample logging configuration. The only tangible logging
132
 
# performed by this configuration is to send an email to
133
 
# the site admins on every HTTP 500 error when DEBUG=False.
134
 
# See http://docs.djangoproject.com/en/dev/topics/logging for
135
 
# more details on how to customize your logging configuration.
136
 
LOGGING = {
137
 
    'version': 1,
138
 
    'disable_existing_loggers': False,
139
 
    'filters': {
140
 
        'require_debug_false': {
141
 
            '()': 'django.utils.log.RequireDebugFalse'
142
 
        }
143
 
    },
144
 
    'handlers': {
145
 
        'mail_admins': {
146
 
            'level': 'ERROR',
147
 
            'filters': ['require_debug_false'],
148
 
            'class': 'django.utils.log.AdminEmailHandler'
149
 
        }
150
 
    },
151
 
    'loggers': {
152
 
        'django.request': {
153
 
            'handlers': ['mail_admins'],
154
 
            'level': 'ERROR',
155
 
            'propagate': True,
156
 
        },
 
54
 
 
55
# Database
 
56
# https://docs.djangoproject.com/en/{{ docs_version }}/ref/settings/#databases
 
57
 
 
58
DATABASES = {
 
59
    'default': {
 
60
        'ENGINE': 'django.db.backends.sqlite3',
 
61
        'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
157
62
    }
158
63
}
 
64
 
 
65
# Internationalization
 
66
# https://docs.djangoproject.com/en/{{ docs_version }}/topics/i18n/
 
67
 
 
68
LANGUAGE_CODE = 'en-us'
 
69
 
 
70
TIME_ZONE = 'UTC'
 
71
 
 
72
USE_I18N = True
 
73
 
 
74
USE_L10N = True
 
75
 
 
76
USE_TZ = True
 
77
 
 
78
 
 
79
# Static files (CSS, JavaScript, Images)
 
80
# https://docs.djangoproject.com/en/{{ docs_version }}/howto/static-files/
 
81
 
 
82
STATIC_URL = '/static/'