first commit

This commit is contained in:
Hamza-Ayed
2026-06-09 08:40:31 +03:00
commit d8901e1a87
3161 changed files with 536187 additions and 0 deletions

18
deploy.sh Executable file
View File

@@ -0,0 +1,18 @@
#!/bin/bash
# Check if a commit message was provided as an argument
if [ -n "$1" ]; then
COMMIT_MSG="$1"
else
# Use current date and time if no message is provided
COMMIT_MSG="Update: $(date +'%Y-%m-%d %H:%M:%S')"
fi
echo "Adding all files..."
git add .
echo "Committing with message: $COMMIT_MSG"
git commit -m "$COMMIT_MSG"
echo "Pushing to origin..."
git push origin --all