server/settings.py
changeset 15 a3b7c0823378
parent 13 08f34bbc70ee
child 22 609fa711b324
equal deleted inserted replaced
14:4d27fbc3f9df 15:a3b7c0823378
    77         
    77         
    78         'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
    78         'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
    79     }
    79     }
    80 }
    80 }
    81 
    81 
       
    82 CACHES = {
       
    83     'default': {
       
    84         'BACKEND': 'django.core.cache.backends.db.DatabaseCache',
       
    85         'LOCATION': 'cacheTable',
       
    86     }
       
    87 }
       
    88 
    82 # Internationalization
    89 # Internationalization
    83 # https://docs.djangoproject.com/en/1.7/topics/i18n/
    90 # https://docs.djangoproject.com/en/1.7/topics/i18n/
    84 
    91 
    85 LANGUAGE_CODE = 'en-us'
    92 LANGUAGE_CODE = 'en-us'
    86 
    93