v0.0.62: лимиты 50МБ/файл, 500МБ/сессия (фронт+бэк), лимиты в UI
Deploy drhider / validate (push) Canceled after 0s

This commit is contained in:
“Naeel”
2026-08-24 08:22:54 +03:00
parent 2fd4afa907
commit 0dc5d8673d
5 changed files with 70 additions and 10 deletions
+2 -2
View File
@@ -21,7 +21,7 @@ if _sys_path_root not in sys.path:
sys.path.insert(0, _sys_path_root)
# Версия приложения (меняется при изменениях)
VERSION = "0.0.61"
VERSION = "0.0.62"
def setup_logging():
@@ -71,7 +71,7 @@ def create_app():
# Конфигурация
app.config["VERSION"] = VERSION
app.config["MAX_CONTENT_LENGTH"] = 200 * 1024 * 1024 # 200 MB
app.config["MAX_CONTENT_LENGTH"] = 50 * 1024 * 1024 # 50 MB (лимит на один файл)
# Регистрируем blueprint'ы
from routes import register_routes