this post was submitted on 02 Sep 2023
80 points (94.4% liked)
Open Source
31063 readers
511 users here now
All about open source! Feel free to ask questions, and share news, and interesting stuff!
Useful Links
- Open Source Initiative
- Free Software Foundation
- Electronic Frontier Foundation
- Software Freedom Conservancy
- It's FOSS
- Android FOSS Apps Megathread
Rules
- Posts must be relevant to the open source ideology
- No NSFW content
- No hate speech, bigotry, etc
Related Communities
Community icon from opensource.org, but we are not affiliated with them.
founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
It might not be a solution for everyone, but you can self host a git repository on your static site!
stagit is a static git site generator. It is lean, you can self host it even of the cheapest of shared hosting and it makes code browseable via html, which is a plus for sharing and receiving suggestions/contributions.
For a relatively small, low bandwith project it is a charm. As an example, here are my repositories.
I like the concept and the aesthetics, but I guess you still need to run a git server?
Nope! Little known to people, you just need to locally clone your repository with
--bare
and upload that. You will see you can clone it even if you don't have a git server!It is a very slick, minimalist solution.
TIL, thanks. This might be a viable path for me.