First commit

This commit is contained in:
2026-06-19 22:17:09 -03:00
commit 239203ee2a
533 changed files with 75195 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
#!/usr/bin/env bash
set -euo pipefail
TARGET="${1:-.}"
mkdir -p "$TARGET/load" "$TARGET/playwright" "$TARGET/bin" "$TARGET/evidencias"
cp -R bin "$TARGET/"
cp -R load "$TARGET/"
cp -R playwright "$TARGET/"
cp run_certification.sh "$TARGET/"
chmod +x "$TARGET/run_certification.sh" "$TARGET/bin/certify_agent_platform.py"
echo "Instalado em $TARGET"
echo "Execute: cd $TARGET && ./run_certification.sh"