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. Think of like an infrastructure that allows a user to own his own personal cloud that is extensible via WebAssembly applications and accessible via Web/Mobile SDKs. It is designed to be resilient to failures, allow offline usage (ex: on mobile).
Exocore is primarily built for Exomind, a personal knowledge management tool built in parallel of this project. Exocore is the application framework for Exomind.
The primary concept in Exocore is a Cell, which is a unique container for a user's applications and data.
A cell consists of: * Chain nodes managing replication and storage by using a blockchain data structure. * Store nodes managing indexation, querying and mutation of the data (collocated with chain node). * Applications nodes run applications written in WebAssembly (that can be collocated with store 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
clippy
and rustfmt
: rustup component add clippy rustfmt
brew install capnp
apt install capnproto
brew install protobuf swift-protobuf
apt install protobuf-compiler
CLI:
./tools/install.sh
or cd exo && cargo install --path .
or grab latest released binary.Configuration
./examples/node.yaml
].
exo
can also generate and manage configurations. See Quick start.On node 1
exo --dir ./node1 node init --name node1
exo -d ./node1 config edit
exo -d ./node1 cell init --name my_cell
On node 2
exo --dir ./node2 node init --name node1
exo -d ./node2 config edit
disco.exocore.io
), but this can overriden:exo -d ./node2 cell join
and copy the displayed discovery PIN.
On node 1:
exo -d ./node1 cell node add --chain --store
Paste node 2's discovery PIN.
Start both nodes:
exo -d ./node1 daemon
exo -d ./node2 daemon