adold/queue-storm-classifier
0
1#!/bin/sh2# Container entrypoint — portably lowercases LOG_LEVEL then execs uvicorn.3# POSIX sh does not support bash's ${VAR,,}; use tr instead.4set -eu5 6PORT="${APP_PORT:-8000}"7LOG_LEVEL_LOWER=$(printf '%s' "${LOG_LEVEL:-info}" | tr '[:upper:]' '[:lower:]')8 9exec uvicorn app.main:app \10 --host 0.0.0.0 \11 --port "${PORT}" \12 --log-level "${LOG_LEVEL_LOWER}" \13 --no-access-log