~mgedmin/ubuntu.lt/socialauth

« back to all changes in this revision

Viewing changes to project/development.py

  • Committer: Mantas Zimnickas
  • Date: 2010-12-15 20:16:50 UTC
  • Revision ID: sirexas@gmail.com-20101215201650-xki1l80g18pfm1js
Some updates from django-starter.

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
    '127.0.0.1',
8
8
)
9
9
 
 
10
TEST_RUNNER = 'django_coverage.coverage_runner.CoverageRunner'
 
11
 
10
12
EMAIL_BACKEND = 'django.core.mail.backends.filebased.EmailBackend'
11
13
EMAIL_FILE_PATH = os.path.join(BUILDOUT_DIR, 'var', 'mail')
12
14
 
13
 
CACHE_BACKEND = "locmem:///"
14
 
CACHE_TIMEOUT = 60 * 5
15
 
CACHE_PREFIX = "Z"
 
15
CACHE_BACKEND = "dummy://"
16
16
 
17
17
DATABASES = {
18
18
    'default': {
30
30
)
31
31
 
32
32
INSTALLED_APPS += (
 
33
    'debug_toolbar',
33
34
    'django_extensions',
34
 
    'debug_toolbar',
35
35
)