1
0

Compare commits

..

2 Commits

Author SHA1 Message Date
78bc08c1ee forward CERC_REMOTE_DEBUG 2023-06-28 12:57:29 +08:00
81b555ec47 add missing files 2023-06-28 12:56:23 +08:00
6 changed files with 38 additions and 4 deletions

View File

@ -21,7 +21,7 @@ services:
cap_add:
- SYS_PTRACE
environment:
CERC_REMOTE_DEBUG: "true"
CERC_REMOTE_DEBUG: ${CERC_REMOTE_DEBUG:-true}
CERC_RUN_STATEDIFF: ${CERC_RUN_STATEDIFF:-detect}
CERC_STATEDIFF_DB_NODE_ID: 1
CERC_SCRIPT_DEBUG: ${CERC_SCRIPT_DEBUG}

View File

@ -29,7 +29,7 @@ services:
cap_add:
- SYS_PTRACE
environment:
CERC_REMOTE_DEBUG: "true"
CERC_REMOTE_DEBUG: ${CERC_REMOTE_DEBUG:-true}
CERC_RUN_STATEDIFF: "detect"
CERC_STATEDIFF_DB_NODE_ID: 1
CERC_SCRIPT_DEBUG: ${CERC_SCRIPT_DEBUG}

View File

@ -26,7 +26,7 @@ services:
PROM_HTTP_ADDR: "0.0.0.0"
PROM_HTTP_PORT: "8090"
LOGRUS_LEVEL: "debug"
CERC_REMOTE_DEBUG: "true"
CERC_REMOTE_DEBUG: ${CERC_REMOTE_DEBUG:-true}
volumes:
- type: bind
source: ../config/ipld-eth-server/chain.json

View File

@ -0,0 +1,6 @@
# fixturenet-plugeth-loaded
A "loaded" version of `fixturenet-eth` that uses PluGeth instead of go-ethereum,
with all the bells and whistles enabled.
See `stacks/fixturenet-eth/README.md` for more information.

View File

@ -0,0 +1,28 @@
version: "1.0"
name: fixturenet-plugeth-loaded
decription: "Loaded Plugeth-based Ethereum Fixturenet"
repos:
- git.vdb.to/cerc-io/plugeth # dev
- git.vdb.to/cerc-io/plugeth-statediff
- github.com/cerc-io/tx-spammer
- github.com/cerc-io/ipld-eth-server
- github.com/cerc-io/ipld-eth-db
- github.com/cerc-io/lighthouse
containers:
- cerc/plugeth
- cerc/plugeth-statediff
- cerc/lighthouse
- cerc/lighthouse-cli
- cerc/fixturenet-eth-plugeth
- cerc/fixturenet-eth-lighthouse
- cerc/ipld-eth-server
- cerc/ipld-eth-db
- cerc/keycloak
- cerc/tx-spammer
pods:
- fixturenet-plugeth
- tx-spammer
- fixturenet-eth-metrics
- keycloak
- ipld-eth-server
- ipld-eth-db

View File

@ -196,7 +196,7 @@ def _make_runtime_env(ctx):
"CERC_HOST_UID": f"{os.getuid()}",
"CERC_HOST_GID": f"{os.getgid()}"
}
container_exec_env.update({"CERC_SCRIPT_DEBUG": "true"} if ctx.debug else {})
container_exec_env.update({"CERC_SCRIPT_DEBUG": "true", "CERC_REMOTE_DEBUG": "true"} if ctx.debug else {})
return container_exec_env