docs(ops): estandarizar arranque UB24 y registrar hashes

This commit is contained in:
komkida91
2026-02-14 19:37:53 +01:00
parent f6d8ab13c0
commit 7dddbc4764
2 changed files with 17 additions and 5 deletions

View File

@@ -7,7 +7,7 @@
Desde `c:\word`:
```powershell
python demo/_run_elementor_temp.py
python -m demo.app
```
## Verificar que quedo arriba
@@ -27,12 +27,12 @@ Si responde `StatusCode: 200`, esta listo.
Desde `c:\word`:
```powershell
Start-Process -FilePath python -ArgumentList @('demo/_run_elementor_temp.py') -WorkingDirectory 'c:\word' -RedirectStandardOutput 'c:\word\logs_demo_app.txt' -RedirectStandardError 'c:\word\logs_demo_app.err'
Start-Process -FilePath python -ArgumentList @('-m','demo.app') -WorkingDirectory 'c:\word'
```
## Parar servidor
```powershell
Get-CimInstance Win32_Process | Where-Object { $_.Name -eq 'python.exe' -and $_.CommandLine -match '_run_elementor_temp.py' } | ForEach-Object { Stop-Process -Id $_.ProcessId -Force }
Get-CimInstance Win32_Process | Where-Object { $_.Name -eq 'python.exe' -and $_.CommandLine -match 'demo.app' } | ForEach-Object { Stop-Process -Id $_.ProcessId -Force }
```
## Logs