mirror of
https://github.com/status-im/nim-codex.git
synced 2025-01-09 18:36:29 +00:00
6dd7e55719
- Enable codex_enable_api_debug_peers - Add NAT_IP_AUTO for Dist-Tests
12 lines
191 B
Bash
12 lines
191 B
Bash
#!/bin/bash
|
|
|
|
# Parameters
|
|
if [[ "${NAT_IP_AUTO}" == "true" ]]; then
|
|
export CODEX_NAT=$(hostname --ip-address)
|
|
echo "Set CODEX_NAT: ${CODEX_NAT}"
|
|
fi
|
|
|
|
# Run
|
|
echo "Run Codex node"
|
|
exec "$@"
|