This commit is contained in:
2026-04-24 17:40:25 +03:30
parent f04a9fe71f
commit 24ed5776bc
16 changed files with 9244 additions and 11 deletions
+10
View File
@@ -0,0 +1,10 @@
from .settings import * # noqa: F403,F401
ROOT_URLCONF = "config.test_urls"
LOGGING = { # noqa: F405
"version": 1,
"disable_existing_loggers": False,
"handlers": {"console": {"class": "logging.StreamHandler"}},
"root": {"handlers": ["console"], "level": "WARNING"},
}