Files
cybertron-log-enricher/scripts/run-local
2024-11-09 17:33:58 +05:30

14 lines
334 B
Plaintext

# !/usr/bin/env bash
ENVS=""
while read -r line; do
if [[ "$line" == *"#"* ]]; then
continue
fi
ENVS+="$line "; done < local.env
echo "Building log-enricher locally"
eval "make build-log-enricher
echo "installing node modules"
cd bins/cybertron-symbolicator-react-native && npm install && cd ../../
$ENVS out/log-enricher"