Go to file
renovate[bot] e086dc6f02
chore(deps): update dependency golang to v1.18.5 (#14)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-08-02 05:49:13 +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.5 (#14) 2022-08-02 05:49:13 +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 chore(deps): update module github.com/stretchr/testify to v1.8.0 (#12) 2022-07-18 06:13:02 +02:00
go.sum chore(deps): update module github.com/stretchr/testify to v1.8.0 (#12) 2022-07-18 06:13:02 +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.