Switch MAX bridge to PyMax only

This commit is contained in:
sevenhill
2026-07-07 14:18:49 +03:00
parent 8efeff334a
commit af84343e19
19 changed files with 314 additions and 8088 deletions
+3 -3
View File
@@ -23,14 +23,14 @@ if (Test-Path $staging) {
}
New-Item -ItemType Directory -Force -Path $staging | Out-Null
foreach ($item in @("server", "worker", "deploy", "Dockerfile.server", "QMax.slnx")) {
foreach ($item in @("server", "pymax-worker", "deploy", "Dockerfile.server", "QMax.slnx")) {
Copy-Item -LiteralPath (Join-Path $root $item) -Destination $staging -Recurse -Force
}
foreach ($path in @(
"server/QMax.Api/bin",
"server/QMax.Api/obj",
"worker/node_modules"
"pymax-worker/src/__pycache__"
)) {
$target = Join-Path $staging $path
if (Test-Path $target) {
@@ -40,7 +40,7 @@ foreach ($path in @(
Push-Location $staging
try {
tar -czf $archive server worker deploy Dockerfile.server QMax.slnx
tar -czf $archive server pymax-worker deploy Dockerfile.server QMax.slnx
}
finally {
Pop-Location