From 6257e361dedbc343bb9815f897e40a4f014b7481 Mon Sep 17 00:00:00 2001 From: DJ Gillespie Date: Thu, 13 Aug 2020 19:48:12 -0600 Subject: [PATCH] forgot local.py --- core/settings/local.py | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 core/settings/local.py diff --git a/core/settings/local.py b/core/settings/local.py deleted file mode 100644 index 9a23954..0000000 --- a/core/settings/local.py +++ /dev/null @@ -1,18 +0,0 @@ -import os -import dj_database_url - - -DEFAULT_CONNECTION = dj_database_url.parse('postgres://djg:1774274aB@localhost:5432/qrtr-local') - -DATABASES = {"default": DEFAULT_CONNECTION, } - -# Quick-start development settings - unsuitable for production -# See https://docs.djangoproject.com/en/2.2/howto/deployment/checklist/ - -# SECURITY WARNING: keep the secret key used in production secret! -SECRET_KEY = 'jc@r$_x4$mp-b84&+m3s@hm7kpl$br-wa&50*&xjx^^fddg6q$' - -# SECURITY WARNING: don't run with debug turned on in production! -DEBUG = True - -ALLOWED_HOSTS = ['*']