GithubHelp home page GithubHelp logo

georgehu716 / yarr Goto Github PK

View Code? Open in Web Editor NEW

This project forked from nkanaev/yarr

0.0 0.0 0.0 9.81 MB

yet another rss reader

License: MIT License

Shell 0.26% JavaScript 9.06% C 2.55% Objective-C 2.47% Go 73.29% CSS 3.42% Makefile 0.55% HTML 8.39%

yarr's Introduction

yarr

yarr (yet another rss reader) is a web-based feed aggregator which can be used both as a desktop application and a personal self-hosted server.

The app is a single binary with an embedded database (SQLite).

screenshot

usage

The latest prebuilt binaries for Linux/MacOS/Windows AMD64 are available here. Installation instructions:

  • Command Arges

      -addr string
            address to run server on (default "127.0.0.1:7070")
      -auth-file path
            path to a file containing username:password
      -base string
            base path of the service url
      -cert-file path
            path to cert file for https
      -db path
            storage file path
      -key-file path
            path to key file for https
      -log-file path
            path to log file to use instead of stdout
      -open
            open the server in browser
      -version
            print application version
    
  • MacOS

    Download yarr-*-macos64.zip, unzip it, place yarr.app in /Applications folder, open the app, click the anchor menu bar icon, select "Open".

  • Windows

    Download yarr-*-windows64.zip, unzip it, open yarr.exe, click the anchor system tray icon, select "Open".

  • Linux

    Download yarr-*-linux64.zip, unzip it, place yarr in $HOME/.local/bin and run the script.

  • Docker environment

    You can use docker or docker-compose to run yarr, and you can also use environment variables to configure startup parameters.

    • YARR_ADDR :address to run server on (default "127.0.0.1:7070")
    • YARR_BASE :base path of the service url
    • YARR_AUTHFILE :path to a file containing username:password
    • YARR_CERTFILE :path to cert file for https
    • YARR_KEYFILE :path to key file for https
    • YARR_DB :storage file path
    • YARR_LOGFILE :path to log file to use instead of stdout
  • Docker run:

    docker run -d \
    --name yarr \
    -p 25255:7070 \
    -e YARR_AUTHFILE="/data/.auth.list" \
    -v /data/yarr-data:/data \
    --restart always \
    arsfeld/yarr:latest
    
  • Docker-Compose Run

    Create a file named .auth.list under the /data/ directory, and the content format should be: username:password. Then start by running docker-compose up -d and enjoy!

    version: '3.3'
    services:
        yarr:
            container_name: yarr
            image: 'arsfeld/yarr:latest'
            restart: always
            ports:
                - '25255:7070'
            environment:
              YARR_AUTHFILE: "/data/.auth.list"
            volumes:
                - '/data/yarr-data:/data'
  • See more:

credits

Feather for icons.

yarr's People

Contributors

adaszko avatar dlford avatar e-zk avatar farow avatar hannesbraun avatar hcl avatar icefed avatar jakembauer avatar kaloyan13 avatar lakuapik avatar minioin avatar nkanaev avatar pierreprinetti avatar qbit avatar rebron1900 avatar vfaronov avatar wnh avatar yangkghjh avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.