1

add simple view

This commit is contained in:
2024-01-11 23:36:15 +02:00
parent 0e762f8520
commit 2fc1b17f43
6 changed files with 194 additions and 7 deletions

View File

@@ -104,3 +104,17 @@ COMPRESS_PRECOMPILERS = (
)
DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField'
LOGGING = {
"version": 1,
"disable_existing_loggers": False,
"handlers": {
"console": {
"class": "logging.StreamHandler",
},
},
"root": {
"handlers": ["console"],
"level": "WARNING",
},
}