From cc990ee003027283dd79485a1433bfcb900ab3ed Mon Sep 17 00:00:00 2001 From: pacnpal <183241239+pacnpal@users.noreply.github.com> Date: Sun, 17 Aug 2025 21:09:09 -0400 Subject: [PATCH] Add profiles to .gitignore and import database configuration in local settings --- .gitignore | 1 + config/django/local.py | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index f497a535..bfc55bab 100644 --- a/.gitignore +++ b/.gitignore @@ -387,3 +387,4 @@ Temporary Items ***REMOVED***.webhook .github-token logs/ +profiles \ No newline at end of file diff --git a/config/django/local.py b/config/django/local.py index ddaa57f8..b1f48f4c 100644 --- a/config/django/local.py +++ b/config/django/local.py @@ -8,6 +8,9 @@ from ..settings import email # Import the module and use its members, e.g., ema from ..settings import security # Import the module and use its members, e.g., security.SECURE_HSTS_SECONDS from .base import env # Import env for environment variable access +# Import database configuration +DATABASES = database.DATABASES + # Development-specific settings DEBUG = True @@ -173,4 +176,3 @@ LOGGING = { }, }, } -