Go to file
2024-07-21 08:30:31 -06:00
.envrc Add flake 2024-05-05 13:30:29 -06:00
.gitignore update flake and go modules 2024-07-21 08:30:31 -06:00
.goreleaser.yml remove ioutil call 2024-05-05 13:40:33 -06:00
empty-5.3.3.html Update TiddlyWiki to version 5.3.3. 2024-05-05 07:40:30 +02:00
flake.lock flake.lock: Update 2024-07-21 07:51:26 -06:00
flake.nix update flake and go modules 2024-07-21 08:30:31 -06:00
go.mod update flake and go modules 2024-07-21 08:30:31 -06:00
go.sum update flake and go modules 2024-07-21 08:30:31 -06:00
LICENSE Add flake 2024-05-05 13:30:29 -06:00
main.go default ReadHeaderTimeout to ReadTimeout 2024-05-05 13:48:19 -06:00
README.md Fix typo 2021-12-08 21:11:22 -05:00

widdler

widdler is a single binary that serves up TiddlyWikis.

It can be used to serve existing wikis, or to create new ones.

Features

  • TiddlyWikis are served over WebDav so you can save directly from the browser.
  • Automatically create new wiki files by browsing to a non-existent html file.
  • Built in .htpasswd management (Adding users).
  • Password protection via HTTP Basic Authentication.
  • Multiple users (adding another user to the .htaccess file creates a new user namespace).
  • Optional TLS support.

Installation

For Go 1.16:

go get -u suah.dev/widdler

For Go 1.17 and up:

go install suah.dev/widdler@latest

Running

mkdir wiki
cd wiki
# Generate a .htpasswd file:
widdler -gen
Username: qbit
Passwd: ******
# Start the server
./widdler

Now open your browser to http://localhost:8080.

Creating a new TiddlyWiki

Simply browse to the file name you wish to create. widdler will automatically create the wiki file based off the current empty.html TiddlyWiki version.

Saving changes

Simply hit the save button!

Updating widdler

go install suah.dev/widdler@latest

Running without .htpasswd

You can disable auth all together by setting the -auth flag to false:

widdler -auth=false -wikis ~/wiki