mirror of https://github.com/hyperledger/besu
An enterprise-grade Java-based, Apache 2.0 licensed Ethereum client https://wiki.hyperledger.org/display/besu
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
477 B
17 lines
477 B
# Running Pantheon with Gradle
|
|
|
|
You can build and run Pantheon with default options via:
|
|
|
|
```
|
|
./gradlew run
|
|
```
|
|
|
|
By default this stores all persistent data in `build/pantheon`.
|
|
|
|
If you want to set custom CLI arguments for the Pantheon execution, you can use the property `pantheon.run.args` like e.g.:
|
|
|
|
```sh
|
|
./gradlew run -Ppantheon.run.args="--discovery=false --home=/tmp/pantheontmp"
|
|
```
|
|
|
|
which will pass `--discovery=false` and `--home=/tmp/pantheontmp` to the invocation.
|
|
|