feat: initial commit at project root

This commit is contained in:
Hamza-Ayed
2026-05-29 01:06:47 +03:00
commit 87ec54bbd7
22 changed files with 1737 additions and 0 deletions

19
deploy.sh Executable file
View File

@@ -0,0 +1,19 @@
#!/bin/bash
# Simple Deployment Script to stage, commit, and push changes to Gitea
echo "========================================="
echo " Staging and pushing changes to Gitea..."
echo "========================================="
git add .
# Prompt for a commit message
read -p "Enter commit message: " desc
if [ -z "$desc" ]; then
desc="deploy: update voice call service"
fi
git commit -m "$desc"
git push origin main
echo "[+] Done! Now run 'git pull origin main' on your server."