this post was submitted on 09 Oct 2024
70 points (100.0% liked)

Asklemmy

43573 readers
1811 users here now

A loosely moderated place to ask open-ended questions

Search asklemmy πŸ”

If your post meets the following criteria, it's welcome here!

  1. Open-ended question
  2. Not offensive: at this point, we do not have the bandwidth to moderate overtly political discussions. Assume best intent and be excellent to each other.
  3. Not regarding using or support for Lemmy: context, see the list of support communities and tools for finding communities below
  4. Not ad nauseam inducing: please make sure it is a question that would be new to most members
  5. An actual topic of discussion

Looking for support?

Looking for a community?

~Icon~ ~by~ ~@Double_A@discuss.tchncs.de~

founded 5 years ago
MODERATORS
 

Hi everyone - wondering what advice you can offer for building something like this. Ideally I’d like to create a simple wiki for creative projects (mostly for content in the DnD campaigns my group has run over the years) and give others editing access, but would prefer something free or low-cost (no more than $10 monthly would be nice). How might one go about doing this? Just bite the bullet and pay for hosting? Maybe use a service like Azure or Linode?

I should add, I would rather avoid Fandom/wikia pages since that platform is an ad-riddled mess and I dislike using it. Most guidance I’ve found online mentions fandom so I’m hoping for different opinions.

I’m moderately tech savvy but have never done self-hosting (though I’d give it a shot if it’s simple enough to build and keep secure). Thanks!

top 22 comments
sorted by: hot top controversial new old
[–] pinchy@lemmy.world 17 points 3 days ago

Using a GitHub repository wiki is a low effort / zero cost option. https://docs.github.com/en/communities/documenting-your-project-with-wikis (Clearly not as charming as something self hosted though)

[–] dbx12@programming.dev 28 points 4 days ago (3 children)

You could try out mediawiki (that's the software Wikipedia is running on) on a local docket container on your machine to see if it actually is what you want or if you would prefer a simpler wiki software. Depending on how often you need it, you could self host on a raspberry pi in your home and make it accessible to your group through dyndns.

[–] phanto@lemmy.ca 10 points 4 days ago

I ran a mediawiki for almost exactly that for a while on a really old computer that was collecting dust. Eventually I turned it into a VM. I still have it somewhere... You could totally host that on linode or digital ocean.

[–] B0rax 5 points 3 days ago

There are even free Hosters available (like oracle) which would be plenty for a mediawiki. Point a free dyndns to it and you are done for free.

No backups though without some additional work.

[–] Archer@lemmy.world 5 points 4 days ago (1 children)

Tons of plugins for Mediawiki as well

[–] AbouBenAdhem@lemmy.world 4 points 4 days ago

Semantic Mediawiki is an especially useful and powerful one.

[–] Dirk@lemmy.ml 24 points 4 days ago

Ideally I’d like to create a simple wiki for creative projects [...] and give others editing access [...] I’m moderately tech savvy

Codeberg allows to create wikis, even if this isn't their main feature.

The best thing: It is Git-based. So you have a regular Git repository for your wiki and you don't need to learn a new workflow. You can also edit pages in the browser. Permissions are a no-brainer of course. For editing pages, Markdown is used, so you don't even need to learn a new markup language.

Since Codeberg is an open source platform run by a non-profit association all and everything is free to use.

And if you ever want to migrate to somewhere else, just git pull your wiki and you're good to go.

I think this somewhat depends on how tech savvy the people you want to give editing access are. If they know how to handle git and write markdown, I'd go with a git repository with (for example) mkdocs and setup CI/CD to automatically deploy to Github Pages. This would be free. If they are more like the typical MS Word andy, I'd go with a self hosted instance of bookstack. You could host it for example on fly. Unfortunately bookstack does not (yet) support sqlite so you'll also need mariadb, which will make hosting it on fly slightly more expensive (but probably still far below $10), because you'll need 2 machines in total. One of which you can't scale to zero. There are probably other cloud providers where its going to be cheaper though.

[–] geoma@lemmy.ml 3 points 3 days ago

https://hubzilla.org is a a powerful fediverse platform that includes wiki functionality

https://js.wiki is a great wiki software

if you write you content in obsidian, you can use their Publish service to host it hassle-free. also, if you don't want to pay for Obsidian Publish, it's pretty easy to set up a vitepress site on top of an obsidian vault. it's what i did here: https://kraxen72.github.io/tech-support-wiki/ https://github.com/KraXen72/tech-support-wiki (see the docs folder)

[–] supersquirrel@sopuli.xyz 10 points 4 days ago

I mean Dokuwiki is an awesome wiki that doesnt need a database so backing up, sharing and file management is about as easy as it can be to DIY unless you just want to just sync logseq folders directly between computers.

https://www.dokuwiki.org/dokuwiki

I don't understand why other much more unnecessarily complicted wiki softwares get recommended over dokuwiki, especially since there are some really nice plugins like the "farmer" plugin which allows you to make as many seperate subwikis each with potentially different associated accounts on a single dokuwiki.

https://www.dokuwiki.org/plugin:farmer?s[]=farmer

[–] glitchdx@lemmy.world 1 points 2 days ago

i use obsidian notes and keep the files in a Dropbox folder that automatically syncs between my several devices. I use github pages to make it publicly visible. Since it's on github, I've got all the benefits of version control and edit tracking. Also, other authors can use whatever markdown editor they want so long as they don't break link formatting.

[–] lordnikon@lemmy.world 6 points 4 days ago* (last edited 4 days ago) (2 children)

even cheaper obsidian.md and a Dropbox account shared folder the files just sync the changes and built in version control

Best answer here. Wikis have a much more complex syntax and templating if you’re trying to do visually appealing content whereas Obsidian with Canvas, Graph, and many of the plugins is so much easier to get up to speed with and add in crazy cool functionality.

They offer hosting for $8 or $10 per month.

You can also just use GitHub and do it all for free.

[–] RAM@discuss.tchncs.de 1 points 4 days ago

I do my personal wiki in markdown (with kakoune and kak-wiki), and then I convert to html using pandas :)

converting to html, adds an extra step in order for people to edit the text, but it makes it easy to access and navigate :)

[–] T0RB1T@lemmy.ca 5 points 4 days ago* (last edited 4 days ago) (1 children)

Have you considered tiddlywiki? You can selfhost, or use one of a couple of services. I know of https://tiddlyhost.com/

Also you could consider anytype. It's cool, and I like what they're going for. I don't like their weird pretending to be open source license, but it's still pretty cool software. https://anytype.io

Edit: for my personal stuff, I use a combination of logseq, and tiddlywiki, the latter moreso for game development. I landed on anytype at work because it's simple, and my boss, nor anyone else cares about a license, and it just works.

[–] tetris11@lemmy.ml 2 points 4 days ago

Tiddlywiki ftw

[–] Sailing7@lemmy.ml 4 points 4 days ago

For cool features: xWiki

For conveniance in setting up: if you got a synology, use the synology notes app.

[–] Dagamant@lemmy.world 3 points 4 days ago

I’ve been thinking about this as well for TTRPG notes and info for myself and others. I have a few raspberry pi laying around and it should be pretty easy to get something like Mediawiki (the same thing Wikipedia uses)some other wiki engine running on one.

[–] bi_tux@lemmy.world 0 points 3 days ago

you could literally host such a website on a phone

[–] Brkdncr@lemmy.world 1 points 4 days ago

If it were me I would put it on my Synology. If you have any need for a Synology then the up front cost would be more but it would pay for itself in 1-2 years.

[–] kinship@lemmy.sdf.org 0 points 3 days ago

Noob question. Isn't a wiki text, images and hiperlinks? Why not just use html for it?