23 lines
536 B
Bash
Executable File
23 lines
536 B
Bash
Executable File
#!/bin/bash -ex
|
|
|
|
export PATH="/app/node_modules/.bin:$PATH"
|
|
|
|
flags="--network-timeout 100000 --pure-lockfile"
|
|
|
|
if [[ ! -z "${ENV_NAME}" ]]; then
|
|
flags="--env=${ENV_NAME} $flags"
|
|
fi
|
|
|
|
if [ "${APP}" = "trading" ]; then
|
|
yarn nx export ${APP} $flags
|
|
mv /app/dist/apps/trading/exported/ /app/tmp
|
|
rm -rf /app/dist/apps/trading
|
|
mv /app/tmp /app/dist/apps/trading
|
|
else
|
|
yarn nx build ${APP} $flags
|
|
fi
|
|
|
|
env_vars_file="/app/dist/apps/${APP}/.env"
|
|
# make sure there are no exposed .env files
|
|
rm $env_vars_file || echo "No env vars file"
|