Add ignored directories to renv settings for better version control management
This commit is contained in:
parent
257e0bc0c0
commit
a1fc01632a
|
|
@ -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
|
||||||
|
|
|
||||||
|
|
@ -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")
|
|
||||||
})
|
|
||||||
})
|
})
|
||||||
|
|
||||||
# ============================================================================
|
# ============================================================================
|
||||||
|
|
|
||||||
|
|
@ -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"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue