Add ignored directories to renv settings for better version control management

This commit is contained in:
Timon 2026-02-16 15:34:00 +01:00
parent 257e0bc0c0
commit a1fc01632a
4 changed files with 153 additions and 1902 deletions

View file

@ -5,9 +5,12 @@ laravel_app/
data_validation_tool/ data_validation_tool/
python_app/harvest_detection_experiments/ python_app/harvest_detection_experiments/
python_app/experiments/ python_app/experiments/
r_app/old_scripts/
r_app/experiments/
phase2_refinement/ phase2_refinement/
webapps/ webapps/
tools/ tools/
old_sh/
output/ output/
renv/ renv/
*.py *.py

View file

@ -141,12 +141,8 @@ suppressPackageStartupMessages({
library(writexl) # For writing Excel outputs (KPI summary tables) library(writexl) # For writing Excel outputs (KPI summary tables)
library(progress) # For progress bars during field processing library(progress) # For progress bars during field processing
# ML/Analysis (optional - only for harvest model inference) # Note: ML model inference is handled via Python/PyTorch (conda pytorch_gpu)
tryCatch({ # No R torch package needed
library(torch) # For PyTorch model inference (harvest readiness prediction)
}, error = function(e) {
message("Note: torch package not available - harvest model inference will be skipped")
})
}) })
# ============================================================================ # ============================================================================

2035
renv.lock

File diff suppressed because it is too large Load diff

View file

@ -15,5 +15,12 @@
"vcs.ignore.cellar": true, "vcs.ignore.cellar": true,
"vcs.ignore.library": true, "vcs.ignore.library": true,
"vcs.ignore.local": true, "vcs.ignore.local": true,
"vcs.manage.ignores": true "vcs.manage.ignores": true,
"ignored.directories": [
"old_sh",
"r_app/old_scripts",
"r_app/experiments",
"python_app/experiments",
"webapps"
]
} }