From a34d68423363f66946b6be8b11671954585e2f02 Mon Sep 17 00:00:00 2001 From: Lucas Wilson-Richter Date: Sun, 19 May 2024 22:15:29 +1000 Subject: [PATCH] Move config variables into an ignored file --- .gitignore | 1 + config.bash.example | 10 ++++++++++ 2 files changed, 11 insertions(+) create mode 100644 .gitignore create mode 100644 config.bash.example diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a8398c9 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +config.bash diff --git a/config.bash.example b/config.bash.example new file mode 100644 index 0000000..06ef87e --- /dev/null +++ b/config.bash.example @@ -0,0 +1,10 @@ +# Configuration for the repo tools, to be evaluated when they execute. +# +# For shell config (e.g., to be sourced into .zshrc) see init.bash + +REPOSITORY_BASE=~/src + +# If a variable is only to be used by a single script, by custom it will be +# prefixed with the name of the script. + +REPO_DEFAULT_SEARCH_PREFIX="github.com/buildkite"