Go to file
Dawid Wysokiński 4b641dc0be
continuous-integration/drone/push Build is passing Details
continuous-integration/drone/tag Build is passing Details
chore: update README.md
2022-09-08 08:37:12 +02:00
internal refactor: use drone instead of github actions, rename module (#1) 2022-09-08 06:36:04 +00:00
.drone.yml refactor: use drone instead of github actions, rename module (#1) 2022-09-08 06:36:04 +00: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.19.0 (#17) 2022-08-05 06:07:23 +02:00
LICENSE init 2022-05-26 06:28:59 +02:00
README.md chore: update README.md 2022-09-08 08:37:12 +02:00
go.mod refactor: use drone instead of github actions, rename module (#1) 2022-09-08 06:36:04 +00:00
go.sum chore(deps): update dependency golang to v1.19.0 (#17) 2022-08-05 06:07:23 +02:00
main.go refactor: use drone instead of github actions, rename module (#1) 2022-09-08 06:36:04 +00:00
manifest.tmpl refactor: use drone instead of github actions, rename module (#1) 2022-09-08 06:36:04 +00:00
renovate.json refactor: use drone instead of github actions, rename module (#1) 2022-09-08 06:36:04 +00: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: gitea.dwysokinski.me/kichiyaki/lubimyczytacrss:latest
    restart: unless-stopped
    ports:
      - '9234:9234'
    networks:
      - default

Available endpoints

GET /api/v1/rss/authors/{authorID}

Returns the RSS feed of the newest books written by the author with the given ID.