Copy QuecManager beta to non-beta

QM BETA --> regular/non-beta
This commit is contained in:
Cameron Thompson
2025-08-31 02:17:49 -04:00
parent 6d6a3775c4
commit 02dafc73ad
391 changed files with 4494 additions and 740 deletions

View File

@@ -0,0 +1,20 @@
#!/bin/sh
# Simple script to fetch interpreted QCAINFO results
INTERPRETED_FILE="/tmp/interpreted_result.json"
# Set content type for JSON
echo "Content-Type: application/json"
echo "Access-Control-Allow-Origin: *"
echo "Access-Control-Allow-Methods: GET, POST, OPTIONS"
echo "Access-Control-Allow-Headers: Content-Type"
echo ""
# Check if file exists
if [ ! -f "$INTERPRETED_FILE" ]; then
echo "[]"
exit 0
fi
# Return the JSON content
cat "$INTERPRETED_FILE"