feat: Initial commit for Saqel Platform architecture, backend, Docker, and documentation
This commit is contained in:
@@ -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"
|
||||
Reference in New Issue
Block a user