diff options
| author | Bobby <[email protected]> | 2022-11-10 11:19:45 -0500 |
|---|---|---|
| committer | Bobby <[email protected]> | 2022-11-10 11:19:45 -0500 |
| commit | 37edfad8e9d8792e08c2ae514a8278a219ccaaec (patch) | |
| tree | b684573c72b2656dc92bb08b47fe56670bbb155c | |
| parent | dc94af0b0b2df4b0d6fd0b727370d5f04610e620 (diff) | |
| download | thatcomputerscientist-37edfad8e9d8792e08c2ae514a8278a219ccaaec.tar.xz thatcomputerscientist-37edfad8e9d8792e08c2ae514a8278a219ccaaec.zip | |
remove conditions on db
| -rw-r--r-- | thatcomputerscientist/settings.py | 2 |
1 files changed, 1 insertions, 1 deletions
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'), } } |
