diff --git a/config_manager.py b/config_manager.py index 5dbd7e9..1f8fb8d 100644 --- a/config_manager.py +++ b/config_manager.py @@ -55,6 +55,11 @@ def get_default_config(): "from_email": "", "to_emails": [], }, + "amadea_log_path": r"C:\ProgramData\ISoft\Amadea Web 8 x64\data\logs", + "user_status_thresholds": { + "active_minutes": 5, + "inactive_minutes": 30, + }, "admin": { "username": "admin", "password_hash": generate_password_hash("admin"), diff --git a/requirements.txt b/requirements.txt index 1fff652..72a64ea 100644 --- a/requirements.txt +++ b/requirements.txt @@ -4,3 +4,4 @@ flask-limiter==3.9.* psutil==6.1.* werkzeug==3.1.* pyinstaller==6.12.* +pytest==8.3.*