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 # List of callables that know how to import templates from various sources.
23 'django.template.loaders.filesystem.Loader',
24 'django.template.loaders.app_directories.Loader',
25 # 'django.template.loaders.eggs.Loader',
28 ROOT_URLCONF = 'copyspeak.urls'
30 # Python dotted path to the WSGI application used by Django's runserver.
31 WSGI_APPLICATION = 'copyspeak.wsgi.application'
34 # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
35 # Always use forward slashes, even on Windows.
36 # Don't forget to use absolute paths, not relative paths.