From 642be926845739f34e201d0a5a2b42a605bad692 Mon Sep 17 00:00:00 2001 From: Glenn Date: Sun, 7 Jan 2024 19:46:09 +0100 Subject: [PATCH] chore: add code-preloader config file --- .code_preloader.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .code_preloader.yml diff --git a/.code_preloader.yml b/.code_preloader.yml new file mode 100644 index 0000000..5b28953 --- /dev/null +++ b/.code_preloader.yml @@ -0,0 +1,25 @@ +--- +# Example configuration for Code-Preloader + +# List of repository paths to preload +# source_list: +# - "path/to/repo1" +# - "path/to/repo2" + +# List of patterns to ignore during preloading +ignore_list: + - ^\.git/.* + - ^lib.* + +# Path to the output file (if null, output to STDOUT) +output_path: null + +prompt: + # Optional: Path to a file containing the prompt header + header_path: null + + # Optional: Path to a file containing the prompt footer + footer_path: null + + # Optional: Path to a file container a jinja template to structure the prompt + template_path: null