docs(ops): estandarizar arranque UB24 y registrar hashes
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user