Our great sponsors
- Appwrite - The open-source backend cloud platform
- Onboard AI - Learn any GitHub repo in 59 seconds
- InfluxDB - Collect and Analyze Billions of Data Points in Real Time
-
flatnotes
A self-hosted, database-less note taking web app that utilises a flat folder of markdown files for storage.
bash git clone https://github.com/Dullage/flatnotes.git cd flatnotes docker build -t dullage/flatnotes:latest . docker run --rm \ -e "FLATNOTES_USERNAME=user" \ -e "FLATNOTES_PASSWORD=changeMe!" \ -e "FLATNOTES_SECRET_KEY=aLongRandomSeriesOfCharacters" \ -p "80:80" \ dullage/flatnotes:latest Note: As no Docker volumes are mapped in the run command, notes will not be saved when the container is stopped.
-
Gollum might be something worth looking into. It is basically a clone of the GitHub Wiki pages, built on top of git (so it uses version-controlled flat files as backend).
-
Appwrite
Appwrite - The open-source backend cloud platform. Add Auth, Databases, Functions, and Storage to your product and build any application at any scale while using your preferred coding languages and tools.
-
I’ve used the Gitit Wiki. Database is plaintext markdown files under git source control. Renders with pandoc so you get a really good dialect of markdown. The look and feel is a little dated but 8/10 highly recommend.
-
Not a project with wiki in mind, but maybe Docusaurus could help to achieve your goals. It uses extensible markdown files.
-
I use Hugo to generate a static site to host my personal wiki. All the pages are written in Markdown. I used Vim in the past to author content, but these days I use Obsidian. I'm not aware of a Wiki CMS that stores files as Markdown files. But, if you widen the scope of your search, there are many static site generators that can render a site from Markdown files. With the right theme, you basically have a Wiki.
-
http://raneto.com/ is "an open source Knowledgebase platform that uses static Markdown files to power your Knowledgebase" and might fit your bill. No database, just regular `md` files.