From 410deaeca03722e3f88c044d03a22213ed4a7f4b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dawid=20Wysoki=C5=84ski?= Date: Sat, 4 Jun 2022 08:12:32 +0200 Subject: [PATCH] feat: add README.md (#9) --- README.md | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..bdf8a64 --- /dev/null +++ b/README.md @@ -0,0 +1,33 @@ +# lubimyczytacrss + +lubimyczytacrss is an RSS feed generator for [lubimyczytac.pl](https://lubimyczytac.pl). + +## How to use? + +### Option 1: Use Docker + +```shell +$ docker run -d \ + -p 9234:9234 \ + --name lubimyczytacrss \ + kichiyaki/lubimyczytacrss:latest +``` +Or via docker-compose: +```yaml +version: "3.6" + +services: + lubimyczytacrss: + image: kichiyaki/lubimyczytacrss:latest + restart: unless-stopped + ports: + - '9234:9234' + networks: + - default +``` + +## Available endpoints + +### GET /api/v1/rss/authors/{authorID} + +Returns an RSS feed of the newest books written by an author with a given ID and added to [lubimyczytac.pl](https://lubimyczytac.pl).