From 9eb2b8a50f3ab11e9bb8f33565d43346e82f03db Mon Sep 17 00:00:00 2001 From: agessaman Date: Tue, 3 Feb 2026 16:54:41 -0800 Subject: [PATCH] Add data directory to .gitignore and include rrdtool dependency in pyproject.toml --- .gitignore | 3 +++ pyproject.toml | 4 ++++ 2 files changed, 7 insertions(+) diff --git a/.gitignore b/.gitignore index 1769786..012cf78 100644 --- a/.gitignore +++ b/.gitignore @@ -53,6 +53,9 @@ htmlcov/ config.yaml identity.json +# Data +data/ + # Logs *.log .DS_Store diff --git a/pyproject.toml b/pyproject.toml index 7bfc376..4d52e7c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -48,6 +48,10 @@ dependencies = [ hardware = [ "pymc_core[hardware]", ] +# RRD metrics (Performance Metrics chart); system librrd required (e.g. apt install rrdtool) +rrd = [ + "rrdtool", +] dev = [ "pytest>=7.4.0", "pytest-asyncio>=0.21.0",