Browse Source

Added local development script

develop
Drew Short 4 years ago
parent
commit
32fa3fe4df
  1. 14
      scripts/run_development_local.sh

14
scripts/run_development_local.sh

@ -0,0 +1,14 @@
#!/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
./entrypoint.sh run
rm build.info
popd
Loading…
Cancel
Save