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 it as an infrastructure that allows a user to own his own personal cloud that is extensible via WebAssembly applications and accessible via Web/Mobile/Backend SDKs. It is designed to be resilient to failures and will eventually allow offline usage (ex: on mobile).
Exocore is primarily built for Exomind, a personal knowledge management tool built in parallel to 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 manage replication and storage by using a blockchain data structure. * Store nodes manage indexation, querying, and mutation of the data (collocated with chain node). * Application host nodes run applications written in WebAssembly (collocated with store nodes)
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
) to exchange configurations:exo -d ./node2 cell join --chain --store
and copy the displayed discovery PIN.
On node 1:
exo -d ./node1 cell node add
Paste node 2's discovery PIN and accept its join request.
Start both nodes:
exo -d ./node1 daemon
exo -d ./node2 daemon