Add OPAX launch prompt at end of dev-startup.sh

This commit is contained in:
chrischristiansen-glitch 2026-05-29 23:36:14 +02:00
parent 46a0f30588
commit 073e8bb92d

View File

@ -28,3 +28,10 @@ gcloud run services list --region=us-central1
gcloud beta run domain-mappings list --region=us-central1 gcloud beta run domain-mappings list --region=us-central1
echo "=== ✅ Klar for utvikling! ===" echo "=== ✅ Klar for utvikling! ==="
# --- Start OPAX? ---
read -rp $'\n▶ Start OPAX? [Y/n] ' answer
answer=${answer:-Y}
if [[ "$answer" =~ ^[Yy]$ ]]; then
source ~/OSVauco/scripts/opax.sh
fi