X-Git-Url: https://git.mdrn.pl/fnp-django-template.git/blobdiff_plain/6d5faf02d0b7d9f340f7a08acc37f4e383f1c3a1..92978d8c53e45701d995ebe54ac082f2dfe2b659:/src/src/project_name/settings/basic.py diff --git a/src/src/project_name/settings/basic.py b/src/src/project_name/settings/basic.py deleted file mode 100644 index f5dcfb8..0000000 --- a/src/src/project_name/settings/basic.py +++ /dev/null @@ -1,41 +0,0 @@ -from os import path -from . import PROJECT_DIR - - -DEBUG = False -TEMPLATE_DEBUG = DEBUG - -DATABASES = { - 'default': { - 'ENGINE': 'django.db.backends.sqlite3', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'. - 'NAME': path.join(PROJECT_DIR, 'var', '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. - 'PORT': '', # Set to empty string for default. Not used with sqlite3. - } -} - -SITE_ID = 1 - -SILENCED_SYSTEM_CHECKS = [ - '1_6.W001', - ] - -# 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', -) - -ROOT_URLCONF = '{{ project_name }}.urls' - -# Python dotted path to the WSGI application used by Django's runserver. -WSGI_APPLICATION = '{{ project_name }}.wsgi.application' - -TEMPLATE_DIRS = ( - # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates". - # Always use forward slashes, even on Windows. - # Don't forget to use absolute paths, not relative paths. -)