SIENTIAPDE-1645: code snapshot (part 1)

This commit is contained in:
vitor-aignosi
2026-07-16 13:29:23 -03:00
commit 40f26bcf17
114 changed files with 18654 additions and 0 deletions

15
run_local.sh Executable file
View File

@@ -0,0 +1,15 @@
#!/bin/bash
# Exit on any error
set -e
if [ -f .env ]; then
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."
fi
python -m model_manager.worker.worker