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.
17 lines
337 B
17 lines
337 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
|
|
|
|
./entrypoint.sh run
|
|
|
|
rm build.info
|
|
|
|
popd
|