SIENTIAPDE-1243: Add Temporal namespace setup guide to README and improve validation script.

This commit is contained in:
Bruno Domingues
2025-10-02 10:08:02 -03:00
parent 8f4ac3284e
commit 9a1355fe9b
3 changed files with 109 additions and 3 deletions

View File

@@ -3,10 +3,12 @@
# Exit on any error
set -e
echo "Activating virtual environment..."
source ./venv/bin/activate
#echo "Activating virtual environment..."
#conda activate ./venv
echo "Loading environment variables from .env..."
if [ -f .env ]; then
export $(cat .env | grep -v '^#' | xargs)
echo "Environment variables loaded from .env"
@@ -15,4 +17,5 @@ else
fi
echo "Starting ingestor application..."
python -m model_manager.worker.worker