Simplify bin/run to use conda enviroment

This commit is contained in:
Victor Ng 2020-06-24 08:45:21 -04:00
Родитель 4f2859b481
Коммит d2d6e437c8
1 изменённых файлов: 3 добавлений и 49 удалений

52
bin/run
Просмотреть файл

@ -1,52 +1,6 @@
#!/usr/bin/env bash
set -eo pipefail
# default variables
: "${PORT:=8000}"
: "${SLEEP:=1}"
: "${THREADS:=8}"
: "${TRIES:=60}"
: "${WORKERS:=4}"
usage() {
echo "usage: bin/run web|web-dev|test"
exit 1
}
wait_for() {
tries=0
echo "Waiting for $1 to listen on $2..."
while true; do
[[ $tries -lt $TRIES ]] || return
(echo > /dev/tcp/$1/$2) >/dev/null 2>&1
result=
[[ $? -eq 0 ]] && return
sleep $SLEEP
tries=$((tries + 1))
done
}
[ $# -lt 1 ] && usage
case $1 in
web)
exec newrelic-admin run-program gunicorn taar.flask_app:app -b 0.0.0.0:${PORT} --workers ${WORKERS} --threads ${THREADS} --access-logfile -
;;
web-dev)
exec python taar/flask_app.py --host=0.0.0.0 --port=${PORT}
;;
test)
coverage erase
tox
coverage report -m
if [[ ! -z ${CI+check} ]]; then
# submit coverage
coverage xml
env
bash <(curl -s https://codecov.io/bash) -s /tmp
fi
;;
*)
exec "$@"
;;
esac
. /opt/conda/etc/profile.d/conda.sh && \
conda activate taar_gcp_etl && \
exec python $@