Start local environment

Zeus comes with the ability to easily spawn your own full local testing environment

To start you own network run:

zeus start-localenv

Zeus runs the local environment files within ./zeus_boxes/start-localenv.

You can specify a file there with

zeus start-localenv --phase 02-a-eos-local-nodeos
zeus start-localenv --phase 05-a-eos-local-bios

This will give you a basic chain. You can also run this with the --basic-env flag.

zeus start-localenv --basic-env

If you wish to spawn a fully featured EOSIO network, run with --enable-features

zeus start-localenv --enable-features

Note the logs are in the ./logs directory

Run specific services with the --services flag

zeus start-localenv --services "cron,ipfs,oracle

Run a single chain with (so not to run excess nodeos instances):

zeus start-localenv --single-chain

Specify custom system token/precision

zeus start-localenv --custom-token NAT --custom-token-precision 8

Specify EVM host/port for main EVM chain and side EVM chain

zeus start-localenv  --evm-host 127.0.0.1 --evm-port 8545 --evm-sister-host 127.0.0.1 --evm-sister-port 8546

Last updated