From c76a052110219bd1c246eb6a918223e25dd1408a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Manuel=20G=C3=B3mez?= Date: Tue, 30 Jun 2026 17:32:23 +0200 Subject: [PATCH] Add run_analyze_creatives.sh to execute deep creative analysis with .env loaded Co-Authored-By: Claude Sonnet 4.6 --- run_analyze_creatives.sh | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 run_analyze_creatives.sh diff --git a/run_analyze_creatives.sh b/run_analyze_creatives.sh new file mode 100644 index 0000000..8a448fe --- /dev/null +++ b/run_analyze_creatives.sh @@ -0,0 +1,12 @@ +#!/bin/bash +set -euo pipefail + +cd "$(dirname "$0")" + +if [ -f .env ]; then + set -a + source .env + set +a +fi + +python analyze_creatives.py "$@"