From e87ca1d0e5d24ded4bdc32269f99fecd96bf44b9 Mon Sep 17 00:00:00 2001 From: onyx-and-iris Date: Thu, 19 Feb 2026 23:36:42 +0000 Subject: [PATCH] upd dotenv file path --- README.md | 2 +- src/q3rcon_tui/tui.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c4104b3..faf2e0d 100644 --- a/README.md +++ b/README.md @@ -44,7 +44,7 @@ q3rcon-tui --host=localhost --port=28960 --password=rconpassword Store and load from dotenv files located at: - .env in the cwd -- user home directory / .config / rcon-tui / config.env +- user home directory / .config / q3rcon-tui / config.env example .env: diff --git a/src/q3rcon_tui/tui.py b/src/q3rcon_tui/tui.py index 9a3656e..ac48e98 100644 --- a/src/q3rcon_tui/tui.py +++ b/src/q3rcon_tui/tui.py @@ -36,7 +36,7 @@ class Settings(BaseSettings): model_config = SettingsConfigDict( env_file=( '.env', - Path.home() / '.config' / 'rcon-tui' / 'config.env', + Path.home() / '.config' / 'q3rcon-tui' / 'config.env', ), env_file_encoding='utf-8', env_prefix='Q3RCON_TUI_',