Skip to content

Instantly share code, notes, and snippets.

@fcnaud
fcnaud / tw5-server.rb
Created May 23, 2021 11:46 — forked from jimfoltz/tw5-server.rb
A local server for TiddlyWiki5 that allows saving wiki.
require 'webrick'
require 'fileutils'
if ARGV.length != 0
root = ARGV.first.gsub('\\', '/')
else
root = '.'
end
BACKUP_DIR = 'bak'