-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDEPLOY.ps1
More file actions
34 lines (26 loc) 路 991 Bytes
/
Copy pathDEPLOY.ps1
File metadata and controls
34 lines (26 loc) 路 991 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/*
Copyright (c) 2026 Ashraf Morningstar
These are personal recreations of existing projects, developed by Ashraf Morningstar
for learning and skill development.
Original project concepts remain the intellectual property of their respective creators.
Repository: https://github.com/AshrafMorningstar
*/
# Full Automation Script
Write-Host "Starting Full Automation..." -ForegroundColor Cyan
# Configure Git
git config --global user.name "Ashraf Morningstar"
git config --global user.email "ashraf@morningstar.dev"
# Add all files
git add .
# Commit
git commit -m "Premium UI Enhancement - All projects enhanced by Ashraf Morningstar" --no-verify
# Set main branch
git branch -M main
# Add remote if not exists
$remoteExists = git remote | Select-String "origin"
if (-not $remoteExists) {
git remote add origin https://github.com/AshrafMorningstar/Ultimate-Web-Dev-Journey.git
}
# Push
git push -u origin main --force
Write-Host "Automation Complete!" -ForegroundColor Green