Warning: Exocore is at a very early development stage, hence incomplete, unstable and probably totally unsafe. Use at your own risk.
Exocore is a distributed applications framework with private and encrypted data storage. It can be used as a computing and storage backend for web and mobile applications, and is extensible via WebAssembly. It is designed to be resilient to failures, allow offline usage (ex: on mobile). Exocore exposes SDKs for web/WebAssembly, Mobile (Android/iOS) and Rust.
The primary concept in Exocore is a Cell, which is a unique container for a user's applications and data.
A cell consists of: * Data nodes managing replication and storage by using a blockchain data structure. * Index nodes managing indexation, querying and mutation of the data (collocated with data node). * Applications nodes run applications written in WebAssembly (that can be collocated with index nodes) * Clients (fat or thin) that can also act as index, data and partially run applications' WebAssembly.
Build dependencies
apt install build-essential pkg-config libssl-dev
rustup component add clippy rustfmt
brew install capnp
apt install capnproto
brew install protobuf
snap install protobuf
CLI:
cargo run --package exo -- <cli option>
docker run --rm -it -v "$PWD:/volume" docker.pkg.github.com/appaquet/exocore/cli <cli options>
Configuration
config.yaml
file, for which an example can be found in here: [./examples/config.yaml
]cp ./examples/config.yaml node1.yaml
cp ./examples/config.yaml node2.yaml
./utils/cli.sh keys generate
node_keypair
and node_public_key
config with this keypair.listen_addresses
with unique port per node.data_dir
with unique data directory per node. public_key
and addresses
in the cells/nodes
section../utils/cli.sh keys generate
node1.yaml
and node2.yaml
in the cells
section../utils/cli.sh cell --config node1.yaml --public_key <cell_public_key> create_genesis_block
./utils/cli.sh server --config ./node1.yaml start
./utils/cli.sh server --config ./node2.yaml start
Run the web example:
cd ./examples/web && npm install && npm run start
Or build manually:
cd ./clients/wasm && wasm-pack build