im running my capsule on rpi with agate , and i’d like to make it subsribers friendly :) any help is welcome !

  • @phthalo
    link
    43 years ago

    I think the easiest and quickest way to generate an atom feed is by using a simple tool like gemfeed. It’s convenient to include in scripts :)

  • @southerntofu
    link
    23 years ago

    To generate RSS/Atom feeds you need some kind of static site generator. hugo has really good gemini support.

    Comments can be achieved in many ways:

    • if you have a website for your capsule, webmention and other indieweb tech can federate replies from other websites (i don’t know of an equivalent gemini-based tech)
    • ActivityPub is an other web-based protocol for that kind of stuff
    • maybe you have a mailbox a bot can poll for replies to be integrated into your gemlog?
    • maybe you can pull tickets/issues from one or more software forges (Github, Gitea…) where the source of your blog is hosted?

    In any case don’t forget to sanitize user input so you don’t end up serving 3rd party images (those can be replaced on the go with a local copy on your server), scripts and whatnot.

    Happy hacking