antes-de-programacion

This commit is contained in:
2026-03-05 08:53:37 +01:00
parent 31b76c8d45
commit 73ff9c77cb
11110 changed files with 20335 additions and 0 deletions

10
run.sh Executable file
View File

@@ -0,0 +1,10 @@
#!/bin/bash
# Mata cualquier proceso que ocupe el puerto 5000 y arranca la app
cd "$(dirname "$0")"
echo "Liberando puerto 5000..."
kill $(ss -anp 2>/dev/null | grep ':5000' | grep -oP 'pid=\K\d+' | sort -u) 2>/dev/null
sleep 1
echo "Arrancando A13 TV..."
.venv/bin/python app.py