Initial commit - WASL Digital Wallet

This commit is contained in:
Hamza-Ayed
2026-06-20 21:55:06 +03:00
commit 7306c47368
61 changed files with 4157 additions and 0 deletions

20
deploy.sh Executable file
View File

@@ -0,0 +1,20 @@
#!/bin/bash
# Default commit message with current timestamp
COMMIT_MSG="Deploy: $(date '+%Y-%m-%d %H:%M:%S')"
# Use custom commit message if provided as argument
if [ ! -z "$1" ]; then
COMMIT_MSG="$1"
fi
echo "Adding all files..."
git add .
echo "Committing with message: '$COMMIT_MSG'"
git commit -m "$COMMIT_MSG"
echo "Pushing to origin main..."
git push origin main
echo "Done!"