# ==========================================
# 1. NAS ACCESS (SMB / NETWORK SHARES)
# ==========================================
# The primary entry point for the recursive scan
NAS_ROOT_PATH="\\192.168.1.100\Volume1"

# List multiple volumes here separated by commas if you have more than one
NAS_VOLUMES="Z:\,Y:\,\\192.168.1.100\Public"

# Credentials used for SMB/Network access
NAS_USER="admin"
NAS_PASS="YourPassword"

# ==========================================
# 2. DEEP SYSTEM ACCESS (SSH - ASUSTOR ADM)
# ==========================================
# Required to pull RAID levels, Btrfs checksums, and system logs
NAS_SSH_HOST="192.168.1.100"
NAS_SSH_USER="admin"
NAS_SSH_PASS="YourPassword"

# ==========================================
# 3. DATABASE SETTINGS (XAMPP / MYSQL)
# ==========================================
DB_HOST="localhost"
DB_USER="root"
DB_PASS=""
DB_NAME="asustor_pro"

# ==========================================
# 4. HARDWARE GUARDRAILS (i3-10th Gen Opts)
# ==========================================
# Limits the scraper to protect your CPU and 1050 GTX GPU
MAX_CPU_PERCENT=25
THROTTLE_DELAY=0.15
BATCH_SIZE=50