Wikidot-like storage and maintenance system. Tracks wikis, users, passwords, pages, files, and manages a Postgres database. Its schema and migrations are handled by Diesel.
DEEPWELL provides logical operations for handling low-level abstracted data such as individual page revisions. Verification and permissions checking needs to be handled by the consumer.
Currently, the following services are provided:
0
). Currently uses a ups - downs
algorithm for scoring like Wikidot.scrypt
with configurable iteration times, as well as a delay on failed attempts to limit bruteforcing. Also blocks passwords in a specified blacklist to prevent users from using overused or weak passwords (e.g. letmein
, password
, etc.)You will need the diesel_cli
crate installed. For all commands you will need to the DATABASE_URL
environment variable set.
This library targets the latest stable Rust. At time of writing, that is 1.40.0
sh
$ diesel migration run
$ cargo build --release
See diesel.rs for how to use the diesel cli tool.
sh
$ cargo test
Add -- --nocapture
to the end if you want to see test output.
Available under the terms of the GNU Affero General Public License. See LICENSE.md.