6 'ENGINE': 'django.db.backends.sqlite3', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'.
7 'NAME': path.join(PROJECT_DIR, 'dev.db'), # Or path to database file if using sqlite3.
8 'USER': '', # Not used with sqlite3.
9 'PASSWORD': '', # Not used with sqlite3.
10 'HOST': '', # Set to empty string for localhost. Not used with sqlite3.
11 'PORT': '', # Set to empty string for default. Not used with sqlite3.
17 # List of callables that know how to import templates from various sources.
19 'django.template.loaders.filesystem.Loader',
20 'django.template.loaders.app_directories.Loader',
21 # 'django.template.loaders.eggs.Loader',
24 ROOT_URLCONF = 'prawokultury.urls'
26 # Python dotted path to the WSGI application used by Django's runserver.
27 WSGI_APPLICATION = 'prawokultury.wsgi.application'
30 # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
31 # Always use forward slashes, even on Windows.
32 # Don't forget to use absolute paths, not relative paths.