feat: Initial commit for Saqel Platform architecture, backend, Docker, and documentation

This commit is contained in:
Hamza-Ayed
2026-08-26 15:45:55 +03:00
commit d53b64500a
177 changed files with 19909 additions and 0 deletions
Executable
+23
View File
@@ -0,0 +1,23 @@
#!/bin/bash
# ==============================================================================
# SAQEL PLATFORM - DEPLOY & GIT SYNCHRONIZATION SCRIPT
# ==============================================================================
if [ -n "$1" ]; then
COMMIT_MSG="$1"
else
COMMIT_MSG="Update Saqel Platform: $(date +'%Y-%m-%d %H:%M:%S')"
fi
echo "📦 Staging all files..."
git add .
echo "📝 Committing: $COMMIT_MSG"
git commit -m "$COMMIT_MSG"
echo "🚀 Pushing to origin..."
git push origin --all
echo "✅ Done! On the production server run:"
echo " git pull && docker compose -f docker-compose.yml up -d --build"