QuickstartΒΆ

The easiest way to run a local Aergo server is using Docker.

docker run -p 7845:7845 aergo/node

You can pass arguments to the server like this:

docker run -p 7845:7845 aergo/node aergosvr --testmode

To supply your own config file, use:

docker run -p 7845:7845 -v $(pwd)/config.toml:/aergo/config.toml aergo/node aergosvr --config /aergo/config.toml

Building from source: You can also build the binaries yourself from source. See here for details.

Syncing with the public testnet: Please refer to the testnet guide for more instructions.