Update Saqel Platform: 2026-09-10 12:26:22

This commit is contained in:
Hamza-Ayed
2026-09-10 12:32:01 +03:00
parent 09dfd665b5
commit 960d4c8604
28 changed files with 690 additions and 2864 deletions
+7 -2
View File
@@ -1,4 +1,5 @@
#!/bin/bash
set -euo pipefail
# ==============================================================================
# SAQEL PLATFORM - DEPLOY & GIT SYNCHRONIZATION SCRIPT
@@ -14,10 +15,14 @@ echo "📦 Staging all files..."
git add .
echo "📝 Committing: $COMMIT_MSG"
git commit -m "$COMMIT_MSG"
if git diff --cached --quiet; then
echo "ℹ️ No staged changes to commit."
else
git commit -m "$COMMIT_MSG"
fi
echo "🚀 Pushing to origin..."
git push origin --all
git push origin main
echo "✅ Done! On the production server run:"
echo " git pull"
echo " (and if websocket server changed: php backend/websocket/server.php restart -d)"