From 6a650eb5a62bdb6d34b1195254fd1ab174e6efff Mon Sep 17 00:00:00 2001 From: Meng Zhang Date: Mon, 5 Jun 2023 17:58:10 -0700 Subject: [PATCH] Create configuration.md Fixes #91 --- docs/configuration.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 docs/configuration.md diff --git a/docs/configuration.md b/docs/configuration.md new file mode 100644 index 0000000..2383c9d --- /dev/null +++ b/docs/configuration.md @@ -0,0 +1,20 @@ +# Configuration + +Tabby maintains its runtime data in `~/.tabby`, with `~/.tabby/config.toml` serving as its configuration file. + +You can modify the path to the data directory by setting the `TABBY_ROOT` variable. For example: + +``` +export TABBY_ROOT=/data/tabby +``` + +## Example `~/.tabby/config.toml` + +```toml +[[repositories]] +git_url = "https://github.com/TabbyML/tabby.git" +``` + +### `[[repositories]]` + +Git repositories integrated into Tabby for prompting/fine-tuning.