Skip to content

Latest commit

 

History

History
45 lines (29 loc) · 717 Bytes

README.md

File metadata and controls

45 lines (29 loc) · 717 Bytes

Rustle feed

Is a feed reader powered by naive bayes classifier to prevent feed spans

How to run

with docker

Create a folder to contain the db:

  mkdir -p db

Create a volume to share a db config with docker, and build the image:

  docker volume create rustlefeed_db
  docker buildx build -t rustlefeed .

To run with configs:

  docker run -d -p 8000:8000 --name rustlefeed -v rustlefeed_db:/app/db/ rustlefeed:latest

To stop:

  docker stop rustlefeed

With cargo

Only need the rust components You can install via rustup

Enter in directory and run

  cargo run --release