átlagos kiegészítséek jó sok

This commit is contained in:
Roo
2026-03-22 11:02:05 +00:00
parent f53e0b53df
commit 5d44339f21
249 changed files with 20922 additions and 2253 deletions

21
sf_run.sh Executable file
View File

@@ -0,0 +1,21 @@
#!/bin/bash
# Ez a szkript közvetlenül a docker exec-et használja a fagyások és compose hibák elkerülésére.
# Robot Health & Integrity Audit támogatás hozzáadva
# Ha a parancs "python -m app.scripts.check_robots_integrity", akkor speciális üzenetet jelenítünk meg
if [[ "$*" == *"check_robots_integrity"* ]]; then
echo "🤖 Robot Health & Integrity Audit indítása..."
echo "=============================================="
fi
sudo docker exec -i sf_api "$@"
# Speciális kilépési kód kezelés
if [[ "$*" == *"check_robots_integrity"* ]]; then
exit_code=$?
if [ $exit_code -eq 0 ]; then
echo "✅ Robot Integrity Audit sikeresen lefutott!"
else
echo "❌ Robot Integrity Audit hibát észlelt!"
fi
fi