dev #9

Merged
avm merged 100 commits from dev into main 2026-03-17 16:06:44 +03:00
3 changed files with 3 additions and 2 deletions
Showing only changes of commit 14b9b8d4ba - Show all commits

3
.gitignore vendored
View File

@@ -19,7 +19,8 @@ venv/
*.sqlite3
media/
staticfiles/
logs/
logs/*
!logs/.gitkeep
# IDE
.vscode/

0
logs/.gitkeep Normal file
View File

View File

@@ -78,7 +78,7 @@ LOGGING = {
"file": {
"level": "INFO",
"class": "logging.handlers.RotatingFileHandler",
"filename": "/var/log/django/app.log",
"filename": "/app/logs/app.log",
"maxBytes": 1024 * 1024 * 15, # 15MB
"backupCount": 10,
"formatter": "verbose",