From 92b4d3872ffe7a839ba73c165573d1686697ef97 Mon Sep 17 00:00:00 2001 From: Max P Date: Mon, 19 Aug 2024 19:07:20 +0200 Subject: [PATCH] Add fallback config file search feature - Added a section on fallback configuration file search in `README.md` - Explained searching for configuration files in the user's home directory under `~\.ait\*` - Mentioned the option to provide a user-wide configuration file in the `~\.ait\` directory --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 94e4933..53c043e 100644 --- a/README.md +++ b/README.md @@ -60,6 +60,12 @@ python ait.py --config custom This command will look for a configuration file named `ait.custom.config`. +### Fallback Configuration File search + +As a fallback, if no configuration file is found, the script will search for it in the user's home directory under `~\.ait\*`. + +You can also provide a user wide configuration file by placing it in the `~\.ait\` directory. + ### Command-Line Options - `--config`: Path to a JSON config file or a keyword to identify a specific config (`ait..config`). Default is `ait.config.json`.