SIENTIAPDE-1350: Implement scheduled cleanup workflow using Temporal schedules. Adds schedule creation to worker startup and configures environment variables.

This commit is contained in:
Bruno Domingues
2025-11-25 18:12:53 -03:00
parent 9ecac9c8fd
commit b028dc1b7d
10 changed files with 140 additions and 7 deletions

View File

@@ -4,7 +4,9 @@
set -e
if [ -f .env ]; then
export $(cat .env | grep -v '^#' | xargs)
set -a
source <(cat .env | grep -v '^#' | grep -v '^$')
set +a
echo "Environment variables loaded from .env"
else
echo "Warning: .env file not found. Continuing without environment variables."