Comment on What else should I selfhost?
cecilkorik@lemmy.ca 1 week ago
Before you even start, consider adopting an ‘infrastructure as code’ approach. It will make your life a lot easier in the future.
Start with any actual code: If you have any existing source code, get it under git version control immediately, then prioritize getting it into a git hub like forgejo to make your life easier in the future. Make a git repository for your infrastructure documentation, and record (and comment/document too if you’re feeling ambitious) every command you run in a txt file or an md file or a script, and do that as religiously as you can while you’re setting up all this self-hosted stuff. You may want to dig it up later to try and remember exactly what you did or in case stuff goes wrong and you need to back off and try again. It might seem pointless now, but a year from now, you’ll thank me.
Especially prioritize getting your git stuff moved into a self-hosted forgejo if any of your stuff is hosted on the microsoft technoplague called github.
cows_are_underrated@feddit.org 1 week ago
That’s a very good idea, will definitely do that.