2 from . import PROJECT_DIR
 
  10         'ENGINE': 'django.db.backends.sqlite3', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'.
 
  11         'NAME': path.join(PROJECT_DIR, 'var', 'dev.db'),                      # Or path to database file if using sqlite3.
 
  12         'USER': '',                      # Not used with sqlite3.
 
  13         'PASSWORD': '',                  # Not used with sqlite3.
 
  14         'HOST': '',                      # Set to empty string for localhost. Not used with sqlite3.
 
  15         'PORT': '',                      # Set to empty string for default. Not used with sqlite3.
 
  21 SILENCED_SYSTEM_CHECKS = [
 
  25 # List of callables that know how to import templates from various sources.
 
  27     'django.template.loaders.filesystem.Loader',
 
  28     'django.template.loaders.app_directories.Loader',
 
  29 #     'django.template.loaders.eggs.Loader',
 
  32 ROOT_URLCONF = '{{ project_name }}.urls'
 
  34 # Python dotted path to the WSGI application used by Django's runserver.
 
  35 WSGI_APPLICATION = '{{ project_name }}.wsgi.application'
 
  38     # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
 
  39     # Always use forward slashes, even on Windows.
 
  40     # Don't forget to use absolute paths, not relative paths.