Files
floorithardwoodfloors.com/infra/entrypoint.sh
T
2026-06-04 00:00:01 +01:00

8 lines
159 B
Bash
Executable File

#!/bin/sh
set -e
if [ -z "$ALTCHA_HMAC_KEY" ]; then
export ALTCHA_HMAC_KEY="$(openssl rand -hex 32)"
echo "Generated ALTCHA_HMAC_KEY" >&2
fi
exec "$@"