Go to file
2021-05-20 06:51:01 -06:00
.gitignore Add the ability to disable http auth. 2021-05-18 16:34:49 -06:00
empty-5.1.23.html add tw 2021-05-17 08:05:42 -06:00
go.mod initial 2021-05-17 07:50:45 -06:00
go.sum Add the ability to manage .htpasswd from widdler. 2021-05-20 06:47:38 -06:00
LICENSE initial 2021-05-17 07:50:45 -06:00
main.go Add the ability to manage .htpasswd from widdler. 2021-05-20 06:47:38 -06:00
README.md comment to make it clear what is going on 2021-05-20 06:51:01 -06:00

widdler

widdler is a single binary that serves up TiddlyWikis.

It can be used to server 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

go get -u suah.dev/widdler

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!