Some checks failed
Tests / Go Tests (push) Has been cancelled
Tests / Python Tests (push) Has been cancelled
Tests / Integration Tests (push) Has been cancelled
Tests / Go Lint (push) Has been cancelled
Tests / Python Lint (push) Has been cancelled
Tests / Security Scan (push) Has been cancelled
Tests / All Checks Passed (push) Has been cancelled
Security Scanning / Secret Scanning (push) Has been cancelled
Security Scanning / Dependency Vulnerability Scan (push) Has been cancelled
Security Scanning / Go Security Scan (push) Has been cancelled
Security Scanning / Python Security Scan (push) Has been cancelled
Security Scanning / Node.js Security Scan (push) Has been cancelled
Security Scanning / Docker Image Security (push) Has been cancelled
Security Scanning / Security Summary (push) Has been cancelled
CI/CD Pipeline / Go Tests (push) Has been cancelled
CI/CD Pipeline / Python Tests (push) Has been cancelled
CI/CD Pipeline / Website Tests (push) Has been cancelled
CI/CD Pipeline / Linting (push) Has been cancelled
CI/CD Pipeline / Security Scan (push) Has been cancelled
CI/CD Pipeline / Docker Build & Push (push) Has been cancelled
CI/CD Pipeline / Integration Tests (push) Has been cancelled
CI/CD Pipeline / Deploy to Staging (push) Has been cancelled
CI/CD Pipeline / Deploy to Production (push) Has been cancelled
CI/CD Pipeline / CI Summary (push) Has been cancelled
ci/woodpecker/manual/build-ci-image Pipeline was successful
ci/woodpecker/manual/main Pipeline failed
All services: admin-v2, studio-v2, website, ai-compliance-sdk, consent-service, klausur-service, voice-service, and infrastructure. Large PDFs and compiled binaries excluded via .gitignore.
78 lines
2.1 KiB
Plaintext
78 lines
2.1 KiB
Plaintext
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
<plist version="1.0">
|
|
<dict>
|
|
<!--
|
|
BQAS Local Scheduler - launchd plist
|
|
|
|
Fuehrt BQAS Tests taeglich um 07:00 Uhr aus.
|
|
|
|
Installation:
|
|
cp com.breakpilot.bqas.plist ~/Library/LaunchAgents/
|
|
launchctl load ~/Library/LaunchAgents/com.breakpilot.bqas.plist
|
|
|
|
Deinstallation:
|
|
launchctl unload ~/Library/LaunchAgents/com.breakpilot.bqas.plist
|
|
rm ~/Library/LaunchAgents/com.breakpilot.bqas.plist
|
|
|
|
Manueller Test:
|
|
launchctl start com.breakpilot.bqas
|
|
|
|
Status pruefen:
|
|
launchctl list | grep bqas
|
|
-->
|
|
|
|
<key>Label</key>
|
|
<string>com.breakpilot.bqas</string>
|
|
|
|
<key>ProgramArguments</key>
|
|
<array>
|
|
<string>/Users/benjaminadmin/Projekte/breakpilot-pwa/voice-service/scripts/run_bqas.sh</string>
|
|
</array>
|
|
|
|
<!-- Taeglich um 07:00 Uhr -->
|
|
<key>StartCalendarInterval</key>
|
|
<dict>
|
|
<key>Hour</key>
|
|
<integer>7</integer>
|
|
<key>Minute</key>
|
|
<integer>0</integer>
|
|
</dict>
|
|
|
|
<!-- Log-Ausgaben -->
|
|
<key>StandardOutPath</key>
|
|
<string>/var/log/bqas/stdout.log</string>
|
|
|
|
<key>StandardErrorPath</key>
|
|
<string>/var/log/bqas/stderr.log</string>
|
|
|
|
<!-- Nicht beim Login starten -->
|
|
<key>RunAtLoad</key>
|
|
<false/>
|
|
|
|
<!-- Umgebungsvariablen -->
|
|
<key>EnvironmentVariables</key>
|
|
<dict>
|
|
<key>PATH</key>
|
|
<string>/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin</string>
|
|
<key>HOME</key>
|
|
<string>/Users/benjaminadmin</string>
|
|
<!-- Optional: Service URL ueberschreiben -->
|
|
<!-- <key>BQAS_SERVICE_URL</key>
|
|
<string>http://localhost:8091</string> -->
|
|
</dict>
|
|
|
|
<!-- Arbeitsverzeichnis -->
|
|
<key>WorkingDirectory</key>
|
|
<string>/Users/benjaminadmin/Projekte/breakpilot-pwa/voice-service</string>
|
|
|
|
<!-- Ressourcen-Limits (optional) -->
|
|
<key>ProcessType</key>
|
|
<string>Background</string>
|
|
|
|
<!-- Timeout: 30 Minuten -->
|
|
<key>TimeOut</key>
|
|
<integer>1800</integer>
|
|
</dict>
|
|
</plist>
|