Skip to content

HyperBEAM Repository Setup

This guide provides step-by-step instructions for setting up and testing HyperBEAM.

TEE-based Computation

If you intend to offer TEE-based computation of AO-Core devices, please see the HyperBEAM OS repository for details on configuration and deployment. Additional documentation on TEE setup and configuration will be added here in future updates.

Prerequisites

Before you begin, ensure you have the following installed:

  • The Erlang runtime (OTP 27)
  • Rebar3
  • Git

1. Clone the HyperBEAM Repository

First, clone the permaweb/HyperBEAM repository from GitHub:

git clone https://github.com/permaweb/HyperBEAM

Navigate to the project directory:

cd HyperBEAM

2. Compile the Code with Rebar3

To compile the HyperBEAM code, you'll need to use Rebar3. Run the following command to compile the project:

rebar3 compile

This will compile the necessary code to get HyperBEAM up and running.

3. Run HyperBEAM with Shell

Once the code is compiled, you can start the HyperBEAM shell with Rebar3:

rebar3 shell

This will start HyperBEAM using the default configuration inside the hb_opts.erl, which preloads all devices and sets up default stores. All of these can be configured using the config.flat file with any overrides you specify.

To verify that your HyperBEAM node is running correctly, you can check:

curl http://localhost:10000/~meta@1.0/info
If you receive a response with node information, your HyperBEAM installation is working properly.

4. Run HyperBEAM with Mainnet

To start HyperBEAM connected to the mainnet, you can use the --eval option with rebar3:

rebar3 shell --eval "hb:start_mainnet(#{ port => 10001, priv_key_location => <<\"./wallet.json\">>})."

To verify that your HyperBEAM node is running correctly, you can check:

curl http://localhost:10001/~meta@1.0/info

If you receive a response with node information, your HyperBEAM installation is working properly.

Next Steps

After setting up HyperBEAM, you should:

  1. Configure your installation to match your requirements
  2. Run tests to verify everything is working correctly
  3. Connect to the Compute Unit to complete your setup