From 37edfad8e9d8792e08c2ae514a8278a219ccaaec Mon Sep 17 00:00:00 2001 From: Bobby Date: Thu, 10 Nov 2022 11:19:45 -0500 Subject: remove conditions on db --- thatcomputerscientist/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/thatcomputerscientist/settings.py b/thatcomputerscientist/settings.py index 0ceab756..712fe0a4 100644 --- a/thatcomputerscientist/settings.py +++ b/thatcomputerscientist/settings.py @@ -99,7 +99,7 @@ WSGI_APPLICATION = 'thatcomputerscientist.wsgi.application' DATABASES = { 'default': { 'ENGINE': 'django.db.backends.sqlite3', - 'NAME': os.path.join(BASE_DIR, 'db.sqlite3') if os.getenv('ENVIRONMENT') == 'development' else ('/data/db.sqlite3'), + 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'), } } -- cgit v1.2.3