Yarrlist Github Full

./yarr_linux_x86_64 -auth user:pass

The easiest way to get the full working application is via the Releases section.

  • Download the file, rename it to yarr (or yarr.exe on Windows), and place it in your PATH (e.g., /usr/local/bin or C:\tools).
  • In an era where data privacy is paramount, Yarrlist puts you in control. Because it is self-hosted, your watch history and preferences never leave your server. There are no accounts to create, no tracking, and no ads.

    docker run -d \
      --name yarr \
      -p 7070:7070 \
      -v yarr-data:/data \
      nkanaev/yarr
    

    Or with docker-compose.yml:

    version: '3'
    services:
      yarr:
        image: nkanaev/yarr
        container_name: yarr
        ports:
          - "7070:7070"
        volumes:
          - ./yarr-data:/data
        restart: unless-stopped
    

    YARRLIST stands for "Yet Another Rclone Roop List." It is an open-source tool designed primarily for managing and streamlining bulk operations with Rclone—a popular command-line program for syncing files and directories to and from various cloud storage providers (Google Drive, S3, Dropbox, etc.).

    YARRLIST simplifies creating, validating, and executing “roops” (Rclone operations) across hundreds or thousands of remote paths. yarrlist github full


    Create /etc/systemd/system/yarr.service:

    [Unit]
    Description=Yarr RSS Reader
    After=network.target
    

    [Service] ExecStart=/usr/local/bin/yarr -addr 0.0.0.0:7070 -db /var/lib/yarr/yarr.db User=yarr Restart=always The easiest way to get the full working

    [Install] WantedBy=multi-user.target