Complete Phase 1: MVC, DB migrations, Auth, RBAC, Security, and Views
This commit is contained in:
20
deploy.sh
Executable file
20
deploy.sh
Executable 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."
|
||||
Reference in New Issue
Block a user