Akash is a secure, transparent, and decentralized cloud computing marketplace that connects those who need computing resources (tenants) with those that have computing capacity to lease (providers).
For a high-level overview of the Akash protocol and network economics, check out the whitepapers; a detailed protocol definition can be found in the design documentation; and the target workload definition spec is here.
Akash Suite is the reference implementation of the Akash Protocol. Akash is an actively-developed prototype currently focused on the distributed marketplace functionality.
The Suite is composed of two applications: akash
and akashd
:
akashd
is the (tendermint-powered) blockchain node that implements the decentralized exchange.akash
is the client used to access the exchange and network in general.
The easiest way to get started with Akash is by trying Testnet. Sign up here to get started.
- Read the documentation: docs.akash.network
- Send a PR or raise an issue for the docs ovrclk/docs
- Read latest news and tutorials on the Official Blog
The latest binary release can be installed with Homebrew:
$ brew tap ovrclk/tap
$ brew install akash
Or GoDownloader:
$ curl https://raw.githubusercontent.com/ovrclk/akash/master/godownloader.sh | sh
Akash is written in Golang and is Apache 2.0 licensed - contributions are welcomed whether that means providing feedback, testing existing and new feature or hacking on the source.
To become a contributor, please see the guide on contributing
Akash is developed and tested with golang 1.13.1+. Building requires a working golang installation, a properly set GOPATH
, and $GOPATH/bin
present in $PATH
.
For development environments, requirements include:
- protocol buffers: Protobuf compiler.
Most golang libraries will be installed via go modules
,
however the following packages will
be installed globally with their binaries placed in $GOPATH/bin
by make devdeps-install
:
- gogoprotobuf: Golang protobuf compiler plugin.
- mockery: Mock generator.
- grpc-gateway: HTTP<->gRPC proxy.
- golangci-lint: golang static analysis tool.
See below for dependency installation instructions for various platforms.
# dev environment only:
brew install protobuf
# dev environment only:
sudo pacman -Sy protobuf
Download and build akash
and akashd
:
go get -d github.com/ovrclk/akash
cd $GOPATH/src/github.com/ovrclk/akash
make deps-install
make
# dev environment only:
make devdeps-install
We use thin integration testing environments to simplify the development and testing process. We currently have two environments:
- Single node: simple (no workloads) single node running locally.
- Single node with workloads: single node and provider running locally, running workloads within a virtual machine.
- Multi node: multiple nodes and providers running in a virtual machine.