DEEPWELL

Build status

DEEPWELL is an experimental backend system to provide core wiki operations via an API for Wikijump. This is intended as an internal API consumed by the web server as part of its logical tasks.

The lint #![forbid(unsafe_code)] is set, and therefore this crate has only safe code.

Available under the terms of the GNU Affero General Public License. See LICENSE.md.

Development

If you have sea-orm-cli, and have a local instance of Wikijump running, you can use the following script to autogenerate SeaORM model files:

sh $ scripts/generate-models.sh

Structure

The primary organization of the crate is as follows:

The routes are defined in api/, with their implementations in methods/, and the structures they rely on in services/<name>/structs.rs. The services invoked to encapsulate logical operations are at services/<name>.rs or services/<name>/service.rs.

Compilation

This executable targets the latest stable Rust. At time of writing, that is 1.60.0.

sh $ cargo build --release

Testing

Tests have not yet been implemented, but when they are, run:

sh $ cargo test

Add -- --nocapture to the end if you want to see test output.

Development

sh $ cargo fmt # Ensure code is formatted $ cargo clippy # Check code for lints