Add data directory to .gitignore and include rrdtool dependency in pyproject.toml

This commit is contained in:
agessaman
2026-02-03 16:54:41 -08:00
parent f2badfa0cb
commit 9eb2b8a50f
2 changed files with 7 additions and 0 deletions

3
.gitignore vendored
View File

@@ -53,6 +53,9 @@ htmlcov/
config.yaml
identity.json
# Data
data/
# Logs
*.log
.DS_Store

View File

@@ -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",