Add profiles to .gitignore and import database configuration in local settings

This commit is contained in:
pacnpal
2025-08-17 21:09:09 -04:00
parent 63b9cf1a70
commit cc990ee003
2 changed files with 4 additions and 1 deletions

1
.gitignore vendored
View File

@@ -387,3 +387,4 @@ Temporary Items
***REMOVED***.webhook
.github-token
logs/
profiles

View File

@@ -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 = {
},
},
}