37491d0d32
* web/storagenode: add package-lock.json * storagenode: compile console into binary
21 lines
768 B
Bash
Executable File
21 lines
768 B
Bash
Executable File
#!/bin/sh
|
|
set -euo pipefail
|
|
|
|
if [[ ! -f "config/config.yaml" ]]; then
|
|
./storagenode setup --config-dir config --identity-dir identity
|
|
fi
|
|
|
|
RUN_PARAMS="${RUN_PARAMS:-} --config-dir config"
|
|
RUN_PARAMS="${RUN_PARAMS:-} --identity-dir identity"
|
|
|
|
RUN_PARAMS="${RUN_PARAMS:-} --metrics.app-suffix=-alpha"
|
|
RUN_PARAMS="${RUN_PARAMS:-} --metrics.interval=30m"
|
|
RUN_PARAMS="${RUN_PARAMS:-} --contact.external-address=${ADDRESS}"
|
|
RUN_PARAMS="${RUN_PARAMS:-} --operator.email=${EMAIL}"
|
|
RUN_PARAMS="${RUN_PARAMS:-} --operator.wallet=${WALLET}"
|
|
RUN_PARAMS="${RUN_PARAMS:-} --console.address=:14002"
|
|
RUN_PARAMS="${RUN_PARAMS:-} --storage.allocated-bandwidth=${BANDWIDTH}"
|
|
RUN_PARAMS="${RUN_PARAMS:-} --storage.allocated-disk-space=${STORAGE}"
|
|
|
|
exec ./storagenode run $RUN_PARAMS "$@"
|