A simple, self-contained Wiki engine
Find a file
2018-10-03 18:24:55 +02:00
assets Revert focusing the body text editor when entering edit mode. 2018-10-01 09:02:55 +02:00
deploy Add brew formula 2017-11-29 15:45:03 +01:00
libs/codegen Refactor handling of generated unique names for resources 2018-06-24 23:00:35 +02:00
migrations Store theme explicitly in database. Propagate theme both ways between db and frontend 2018-09-23 22:38:18 +02:00
src Support automatically slugged links 2018-10-03 18:24:55 +02:00
templates Show author for diffs that show only one changeset 2018-10-02 08:44:06 +02:00
themes Iterate on themes 2018-07-21 11:54:03 +02:00
.gitignore Ignore working file for SQLite 2017-09-21 10:07:25 +02:00
.travis.yml Avoid storing build cache in travis, 2018-09-24 18:30:17 +02:00
build.rs Allow build.rs to figure out the correct database schema 2018-09-23 21:39:54 +02:00
Cargo.lock Support automatically slugged links 2018-10-03 18:24:55 +02:00
Cargo.toml Update serde_urlencoded dependency for bugfix 2018-09-23 21:39:09 +02:00
CONTRIBUTING.md Add CONTRIBUTING.md to help would-be contributors 2018-05-13 14:01:27 +02:00
CONTRIBUTORS.md Credit cmal as new contributor 2018-06-24 14:56:01 +02:00
DESIGN.md Add a document describing the design 2018-05-13 13:57:05 +02:00
LICENSE.txt Offer Sausagewiki under GPL3 2017-09-22 16:16:40 +02:00
README.md Inconsequential change to trigger CI pipeline 2018-10-01 10:03:24 +02:00

Build Status

Sausagewiki is a simple, self-contained wiki engine.

Copyright (C) 2017 Magnus Hovland Hoff maghoff@gmail.com

This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

Features

Some features of Sausagewiki, in no particular order:

  • Simple to install and run, no runtime dependencies
  • Reasonable to back up, there is only one data file
  • Can be reverse proxied behind any path without configuration
  • Snappy, light resource usage
  • Markdown syntax
  • Full text search
  • Responsive design: fits different screens as well as print
  • Progressive enhancement: works with or without JavaScript
  • Works with external authentication

Install and run

Sausagewiki aims to be simple to get up and running. It is distributed as a single independent executable for Linux:

  1. Download the latest build of sausagewiki.tar.xz from https://github.com/maghoff/sausagewiki/releases/latest
  2. Decompress: tar Jxf sausagewiki.tar.xz, it decompresses to the single Linux executable sausagewiki
  3. Run: ./sausagewiki wiki.db

For a more permanent installation, you could install Sausagewiki as a systemd service.

Alternative installation methods include the following:

Build from source with cargo build --release, producing the binary as target/release/sausagewiki. This requires you to have a working installation of rust.

Install with Homebrew on OS X/macOS: brew install --HEAD https://raw.githubusercontent.com/maghoff/sausagewiki/master/deploy/sausagewiki.rb (Some users are hitting rust issue #39870 with this brew formula, even though it is supposed to have been fixed)

Command line arguments

USAGE:
    sausagewiki [FLAGS] [OPTIONS] <DATABASE>

FLAGS:
    -h, --help              Prints help information
        --trust-identity    Trust the value in the X-Identity header to be an authenticated username.
                            This only makes sense when Sausagewiki runs behind a reverse proxy which
                            sets this header.
    -V, --version           Prints version information

OPTIONS:
    -a, --address <address>    Sets the IP address to bind to [default: 127.0.0.1]
    -p, --port <port>          Sets the listening port [default: 8080]

ARGS:
    <DATABASE>    Sets the database file to use

Sausagewiki will create an SQLite database file with the filename given in the DATABASE parameter and open an HTTP server bound to the configured address, <address>:<port>.