первый коммит: инструмент, документ, правила, шаблоны

This commit is contained in:
2026-09-13 00:15:15 +02:00
commit 1971daf8c7
38 changed files with 7752 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
# Запуск RECADA: перенос свежего recada.py из Downloads + старт интерфейса
$root = "C:\CAD COWORK"
$dl = Join-Path $env:USERPROFILE "Downloads\recada.py"
if (Test-Path $dl) {
Move-Item -Force $dl (Join-Path $root "tool\recada.py")
Write-Host "Обновлён recada.py из Downloads" -ForegroundColor Green
}
Set-Location (Join-Path $root "tool")
& ".\.venv\Scripts\python.exe" -m streamlit run recada.py --server.maxUploadSize 2000