I use Hugo for static site generation and it makes the RSS stuff for me.
Comment on Help : Self-Hosting RSS Feed for my blog (pls)
486@lemmy.world 2 days ago
How do people subscribe to them?
Subscribing to an RSS feed really is nothing more than telling your RSS client about the URL to that RSS XML file. The RSS client then regularily checks the URL for changes.
If your site is hand-made as you say, you would have to manually create and update the RSS file also. This is quite nuisance, not only because it is XML, but also because every feed entry needs its own unique UUID, which you need to create. Perhaps you could create a script that does it for you. Static site generators are usually able to automatically create an RSS feed for you.
prof@infosec.pub 2 days ago
KazuchijouNo@lemy.lol 21 hours ago
Can I do the UUID generation with the
uuidgen
command? Also, I’m learning python and bash, so perhaps I could do something with cron(? I guess what I need is some sort of template or examples so I can get startedThe whole point is learning cool stuff :D
486@lemmy.world 11 hours ago
Yes, using
uuidgen
should work fine.