diff options
| -rw-r--r-- | test_pgsql.py | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/test_pgsql.py b/test_pgsql.py deleted file mode 100644 index 7a2aa9b..0000000 --- a/test_pgsql.py +++ /dev/null @@ -1,34 +0,0 @@ -from django.conf import global_settings - -DATABASES = { - 'default': { - 'ENGINE': 'django.db.backends.postgresql_psycopg2', - # Edit the below settings before use... - 'USER': '', - 'NAME': '', - 'HOST': '', - 'PASSWORD': '', - } -} - -INSTALLED_APPS = [ - 'django.contrib.auth', - 'django.contrib.admin', - 'django.contrib.contenttypes', - 'django.contrib.sessions', - 'django.contrib.sites', - - 'debug_toolbar', - - 'tests', -] - -MIDDLEWARE_CLASSES = global_settings.MIDDLEWARE_CLASSES + ( - 'debug_toolbar.middleware.DebugToolbarMiddleware', -) - -ROOT_URLCONF = '' - -DEBUG = False - -SITE_ID = 1 |
