Skip to content

wikkid-team/wikkid

Folders and files

NameName
Last commit message
Last commit date
Jan 27, 2025
Dec 20, 2021
Dec 20, 2021
No commit message
Nov 17, 2024
Jan 16, 2011
Nov 17, 2024
Dec 20, 2021
Nov 17, 2024
Dec 20, 2021
Dec 20, 2021
Nov 5, 2010
Nov 16, 2024
May 12, 2010
Jun 29, 2011
Nov 19, 2022
Dec 21, 2021
Nov 16, 2024
Nov 16, 2024
Nov 17, 2024
Oct 7, 2022
Dec 5, 2022
Jan 29, 2011

Repository files navigation

Wikkid Wiki Home

Wikkid is a wiki that uses Git or Bazaar as a way to store the content.

Principles of Wikkid

  • Will run using any Git or Bazaar branch, not just one it has created
  • Provides a Breezy plugin to simplify the serving of a branch
  • When run locally Wikkid will use the current users configured identity
  • Can be used as a public facing wiki with multiple users
  • Can be used as a library in other Python applications

Quickstart

To run from source, type something like:

$ python3 setup.py develop  # install dependencies
$ git init /tmp/wiki
$ ./bin/wikkid-serve /tmp/wiki
$ sensible-browser http://localhost:8080/

Or, using docker:

$ docker run -p 8080:8080 -v /path/to/some/repo:/data \
  ghcr.io/wikkid-team/wikkid
$ sensible-browser http://localhost:8080/

Now what?