Remove .env bake-in — use Coolify env vars at runtime

This commit is contained in:
2026-06-04 12:45:06 +01:00
parent bc07e81514
commit dc414f1b84
3 changed files with 2 additions and 5 deletions
-3
View File
@@ -1,8 +1,5 @@
#!/bin/sh
set -e
if [ -f /var/www/html/.env ]; then
set -a; . /var/www/html/.env; set +a
fi
if [ -z "$ALTCHA_HMAC_KEY" ]; then
export ALTCHA_HMAC_KEY="$(openssl rand -hex 32)"
echo "Generated ALTCHA_HMAC_KEY" >&2