Add run.sh to execute daily analysis with .env loaded

This commit is contained in:
Jose Manuel 2026-06-26 10:28:11 +02:00
parent c782db5a75
commit 25bd82ff1e

12
run.sh Normal file
View File

@ -0,0 +1,12 @@
#!/bin/bash
set -euo pipefail
cd "$(dirname "$0")"
if [ -f .env ]; then
set -a
source .env
set +a
fi
python run.py "$@"