mirror of
https://github.com/logos-blockchain/lssa.git
synced 2026-08-01 12:33:24 +00:00
13 lines
384 B
Bash
Executable File
13 lines
384 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
export POL_PROOF_DEV_MODE=true
|
|
|
|
# Use static configs mounted from host. Both node-config.yaml and
|
|
# deployment-settings.yaml have matching validator keys so the node
|
|
# can produce blocks as a single-validator network.
|
|
exec /usr/bin/logos-blockchain-node \
|
|
/etc/logos-blockchain/node-config.yaml \
|
|
--deployment /etc/logos-blockchain/deployment-settings.yaml
|