2021-02-16 17:06:46 +00:00
|
|
|
# Alfis
|
2021-02-22 22:46:37 +00:00
|
|
|
|
2021-02-22 22:43:32 +00:00
|
|
|
[![Rust](https://github.com/Revertron/Alfis/actions/workflows/rust_build_and_test.yml/badge.svg)](https://github.com/Revertron/Alfis/actions/workflows/rust_build_and_test.yml)
|
|
|
|
|
2021-02-16 17:06:46 +00:00
|
|
|
Alternative Free Identity System
|
|
|
|
|
|
|
|
This project represents a minimal blockchain with no coin, capable of sustaining any number of domain name zones and domains.
|
2021-02-16 22:27:25 +00:00
|
|
|
|
|
|
|
|
|
|
|
## Building
|
|
|
|
|
|
|
|
### On every OS
|
|
|
|
You can build Alfis by issuing `cargo build` and `cargo run` commands in a directory of cloned repository.
|
|
|
|
If you want to build release version you need to do `cargo build --release` as usual.
|
|
|
|
|
|
|
|
### On Windows
|
|
|
|
You don't need any additional steps to build Alfis, just stick to the MSVC version of Rust.
|
|
|
|
|
|
|
|
### On Windows (MINGW64)
|
|
|
|
If you'd rather use Gnu version of Rust you can build Alfis by these steps:
|
|
|
|
```
|
2021-02-22 22:46:37 +00:00
|
|
|
pacman -S git mingw64/mingw-w64-x86_64-rust mingw64/mingw-w64-x86_64-cargo-c
|
2021-02-16 22:27:25 +00:00
|
|
|
git clone https://github.com/Revertron/Alfis.git
|
|
|
|
cd Alfis
|
|
|
|
cargo build
|
|
|
|
```
|
|
|
|
|
|
|
|
### On Linux
|
|
|
|
If you are building on Linux you must ensure that you have `libwebkitgtk` library installed.
|
|
|
|
You can do it by issuing this command: `sudo apt install libwebkit2gtk-4.0-dev` (on Debian/Ubuntu and derivatives).
|