From 970d5d8b0b336afb3993c2c5e420906f761831cf Mon Sep 17 00:00:00 2001 From: user Date: Sun, 15 Feb 2026 00:41:19 +0100 Subject: [PATCH] fix: gitignore live config, add example template Untrack config/derp.toml to avoid leaking credentials. Ship config/derp.toml.example as the reference template. --- .gitignore | 13 +++++++++++++ config/{derp.toml => derp.toml.example} | 0 2 files changed, 13 insertions(+) create mode 100644 .gitignore rename config/{derp.toml => derp.toml.example} (100%) diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0d1c3c2 --- /dev/null +++ b/.gitignore @@ -0,0 +1,13 @@ +__pycache__/ +*.pyc +*.pyo +*.egg-info/ +dist/ +build/ +.venv/ +.eggs/ +*.egg +.ruff_cache/ +.pytest_cache/ +.mypy_cache/ +config/derp.toml diff --git a/config/derp.toml b/config/derp.toml.example similarity index 100% rename from config/derp.toml rename to config/derp.toml.example