Compare commits

...

2 Commits

88 changed files with 4 additions and 1 deletions

1
.gitignore vendored
View File

@@ -387,3 +387,4 @@ Temporary Items
.env.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 = {
},
},
}