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 = 'edumed.urls'
26 SUBDOMAIN_URLCONFS = {
28 'katalog': 'edumed.milurls',
31 # Python dotted path to the WSGI application used by Django's runserver.
32 WSGI_APPLICATION = 'edumed.wsgi.application'
35 # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
36 # Always use forward slashes, even on Windows.
37 # Don't forget to use absolute paths, not relative paths.