Initial import with GitLab CI/CD and registry deploy flow

This commit is contained in:
Yera All
2026-04-02 17:05:45 +05:00
commit 5374c202d9
338 changed files with 81297 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
param(
[string]$SourceDir = "e:\Zhan\.data",
[string]$OutputDir = "e:\Zhan\backups"
)
if (!(Test-Path $SourceDir)) {
Write-Error "Source data directory not found: $SourceDir"
exit 1
}
New-Item -ItemType Directory -Force -Path $OutputDir | Out-Null
$timestamp = Get-Date -Format "yyyyMMdd_HHmmss"
$archivePath = Join-Path $OutputDir ("mvp_cc_data_" + $timestamp + ".zip")
Compress-Archive -Path (Join-Path $SourceDir "*") -DestinationPath $archivePath -Force
Write-Host "Backup created:" $archivePath