Complete restructure from patterns/examples/reference to technology-focused directories: • Created technology-specific directories with comprehensive documentation: - /tdarr/ - Transcoding automation with gaming-aware scheduling - /docker/ - Container management with GPU acceleration patterns - /vm-management/ - Virtual machine automation and cloud-init - /networking/ - SSH infrastructure, reverse proxy, and security - /monitoring/ - System health checks and Discord notifications - /databases/ - Database patterns and troubleshooting - /development/ - Programming language patterns (bash, nodejs, python, vuejs) • Enhanced CLAUDE.md with intelligent context loading: - Technology-first loading rules for automatic context provision - Troubleshooting keyword triggers for emergency scenarios - Documentation maintenance protocols with automated reminders - Context window management for optimal documentation updates • Preserved valuable content from .claude/tmp/: - SSH security improvements and server inventory - Tdarr CIFS troubleshooting and Docker iptables solutions - Operational scripts with proper technology classification • Benefits achieved: - Self-contained technology directories with complete context - Automatic loading of relevant documentation based on keywords - Emergency-ready troubleshooting with comprehensive guides - Scalable structure for future technology additions - Eliminated context bloat through targeted loading 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
14 lines
449 B
Plaintext
14 lines
449 B
Plaintext
# Weekend-heavy preset: Maximum transcoding time
|
|
ALLOWED_TIMES=(
|
|
"22-07:daily" # 10PM to 7AM every day
|
|
"09-17:1-5" # 9AM to 5PM Monday-Friday
|
|
"08-20:6-7" # 8AM to 8PM weekends
|
|
)
|
|
GAMING_PROCESSES=("steam" "lutris" "heroic" "gamemode" "mangohud" "wine" "bottles")
|
|
GPU_THRESHOLD=95
|
|
CHECK_GAMING_ONLY=true
|
|
CONTAINER_NAME="tdarr-node-gpu-unmapped"
|
|
LOG_FILE="/tmp/tdarr-scheduler.log"
|
|
STARTUP_DELAY=5
|
|
QUIET_MODE=false
|