Go to file
Dawid Wysokiński 410deaeca0
feat: add README.md (#9)
2022-06-04 08:12:32 +02:00
.github/workflows feat: add a new github action - publish.yml (#7) 2022-06-02 06:43:35 +02:00
internal fix: add missing s to one route (#8) 2022-06-03 06:59:15 +02:00
.gitignore init 2022-05-26 06:28:59 +02:00
.golangci.yml feat: add endpoint to generate RSS feed (author) (#2) 2022-05-29 13:01:07 +02:00
Dockerfile chore(deps): update dependency golang to v1.18.3 (#6) 2022-06-02 06:15:06 +02:00
LICENSE init 2022-05-26 06:28:59 +02:00
README.md feat: add README.md (#9) 2022-06-04 08:12:32 +02:00
go.mod feat: add endpoint to generate RSS feed (author) (#2) 2022-05-29 13:01:07 +02:00
go.sum feat: add endpoint to generate RSS feed (author) (#2) 2022-05-29 13:01:07 +02:00
main.go feat(client): add one more test for Client.GetAuthor (#4) 2022-05-31 17:16:36 +02:00
renovate.json init 2022-05-26 06:28:59 +02:00

README.md

lubimyczytacrss

lubimyczytacrss is an RSS feed generator for lubimyczytac.pl.

How to use?

Option 1: Use Docker

$ docker run -d \
  -p 9234:9234 \
  --name lubimyczytacrss \
  kichiyaki/lubimyczytacrss:latest

Or via docker-compose:

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.