Reorganize infrastructure as code and implement versioning schema

This commit is contained in:
Alphaeus Mote
2025-05-21 19:40:57 -04:00
parent 8d1a6dd188
commit 2db108aa6b
34 changed files with 4870 additions and 870 deletions
+10
View File
@@ -0,0 +1,10 @@
# PowerShell script to update the version.txt file with the current date and time
# Generate version in yyyy.MM.dd.HHmm format
$version = Get-Date -Format "yyyy.MM.dd.HHmm"
# Update version.txt
$versionFile = Join-Path $PSScriptRoot "version.txt"
$version | Out-File -FilePath $versionFile -NoNewline
Write-Host "Version updated to: $version"