Files
spotify_vibe/scripts/start_cron.sh
2026-02-26 19:33:05 +00:00

14 lines
232 B
Bash

#!/bin/sh
set -eu
: "${CRON_SCHEDULE:=15 2 * * *}"
: "${APP_TIMEZONE:=UTC}"
export TZ="${TZ:-$APP_TIMEZONE}"
cat > /tmp/crontab <<EOF
${CRON_SCHEDULE} /app/scripts/run_nightly.sh
EOF
exec /usr/local/bin/supercronic /tmp/crontab