Complete Phase 1: MVC, DB migrations, Auth, RBAC, Security, and Views

This commit is contained in:
Hamza-Ayed
2026-06-05 00:56:41 +03:00
parent 7ffbc8bafa
commit bed7624ae9
51 changed files with 3295 additions and 0 deletions

20
deploy.sh Executable file
View File

@@ -0,0 +1,20 @@
#!/bin/bash
# ScoutIQ Deployment Script
echo "=== ScoutIQ Deploying Script ==="
# Get current date and time
datetime=$(date "+%Y-%m-%d %H:%M:%S")
# Git workflow
echo "Adding changes to Git..."
git add .
echo "Committing changes..."
git commit -m "Deploy on $datetime"
echo "Pushing changes to origin main..."
git push origin main
echo "Done! You can now run git pull on the server."