Baphomet is the dedicated bot for nulloctet matrix
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

21 lines
366 B

#!/usr/bin/env bash
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
pushd "${DIR}/.."
echo "Writing local testing build.info"
./scripts/get_build.sh > build.info
echo "LOCAL_DEVELOPMENT_"$(cat build.info) > build.info
export NODE_ENV=development
export LOG_LEVEL=debug
set -e
npm run build
set +e
./entrypoint.sh run
rm build.info
popd