Code layout change.
[wolnelektury.git] / wolnelektury / settings / basic.py
diff --git a/wolnelektury/settings/basic.py b/wolnelektury/settings/basic.py
deleted file mode 100644 (file)
index 30812e5..0000000
+++ /dev/null
@@ -1,42 +0,0 @@
-from os import path
-from .paths import PROJECT_DIR
-
-DEBUG = False
-TEMPLATE_DEBUG = DEBUG
-MAINTENANCE_MODE = False
-
-ADMINS = [
-    # ('Your Name', 'your_email@domain.com'),
-]
-
-MANAGERS = ADMINS
-
-DATABASES = {
-    'default': {
-        'ENGINE': 'django.db.backends.sqlite3', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
-        'NAME': path.join(PROJECT_DIR, 'dev.db'), # Or path to database file if using sqlite3.
-        'USER': '',                      # Not used with sqlite3.
-        'PASSWORD': '',                  # Not used with sqlite3.
-        'HOST': '',                      # Set to empty string for localhost. Not used with sqlite3.
-    }
-}
-
-SOLR = "http://localhost:8983/solr/wl/"
-SOLR_TEST = "http://localhost:8983/solr/wl_test/"
-
-# Local time zone for this installation. Choices can be found here:
-# http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
-# although not all choices may be available on all operating systems.
-# If running in a Windows environment this must be set to the same as your
-# system time zone.
-TIME_ZONE = 'Europe/Warsaw'
-USE_TZ = True
-
-SITE_ID = 1
-
-# List of callables that know how to import templates from various sources.
-TEMPLATE_LOADERS = [
-    'django.template.loaders.filesystem.Loader',
-    'django.template.loaders.app_directories.Loader',
-#     'django.template.loaders.eggs.Loader',
-]