From 22ead8dcf31a58e276050afb592bba857c30b82e Mon Sep 17 00:00:00 2001 From: Seth Ladygo Date: Tue, 12 Mar 2019 23:04:36 -0700 Subject: [PATCH] settings.py: db config is in settings_ansible.py --- procat2/settings.py | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/procat2/settings.py b/procat2/settings.py index 337113a..1b7e7ed 100644 --- a/procat2/settings.py +++ b/procat2/settings.py @@ -70,17 +70,6 @@ TEMPLATES = [ WSGI_APPLICATION = 'procat2.wsgi.application' - -# Database -# https://docs.djangoproject.com/en/2.1/ref/settings/#databases - -DATABASES = { - 'default': { - 'ENGINE': 'django.db.backends.sqlite3', - 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'), - } -} - AUTHENTICATION_BACKENDS = ( 'django.contrib.auth.backends.ModelBackend', )