# Configuration for AOC Sync # Poll interval in seconds poll_interval: 300 # Output directory for generated HTML output_dir: "output" # Data storage data_dir: "data" # Repositories to monitor repositories: # Example: Single repository with all years - name: "wathiede" url: "https://github.com/wathiede/advent" type: "single" # single repo for all years local_path: "repos/wathiede" # Optional: specify years if auto-detection fails # years: [2023, 2024] # Example: Multiple repositories, one per year - name: "ggriffiniii" type: "multi-year" # one repo per year years: - year: 2025 url: "https://github.com/ggriffiniii/aoc2025" local_path: "repos/ggriffiniii-2025" #- year: 2024 # url: "https://github.com/user2/aoc-2024" # local_path: "repos/user2-2024" # Years to compare (optional, if not specified, all years found will be used) compare_years: [2025] # Days to compare (optional, if not specified, all days found will be used) # compare_days: [1, 2, 3, 4, 5]