Completa app Android nativa e rimuove il client Flutter.

Il monorepo punta a native/android (login, wizard, diretta RTMP, tabellone WebSocket, pausa/telemetria) con encode 16:9 e orientamento via sensore; eliminati mobile/ e gli script Flutter obsoleti.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-06-06 17:38:56 +02:00
parent 499aee8988
commit 68b4390282
262 changed files with 4860 additions and 15162 deletions

View File

@@ -11,8 +11,8 @@ echo "Sync $SRC -> $SERVER:$DEST"
if ssh "$SERVER" 'command -v rsync >/dev/null 2>&1'; then
rsync -avz --delete \
--exclude '.git' \
--exclude 'mobile/build' \
--exclude 'mobile/.dart_tool' \
--exclude 'native/android/build' \
--exclude 'native/android/.gradle' \
--exclude 'backend/log' \
--exclude 'backend/tmp' \
--exclude 'backend/.bundle' \
@@ -22,7 +22,7 @@ if ssh "$SERVER" 'command -v rsync >/dev/null 2>&1'; then
else
echo "rsync non disponibile sul server, uso tar+scp..."
tar -C "$SRC" -czf /tmp/matchlivetv-deploy.tar.gz \
--exclude='./mobile/build' --exclude='./mobile/.dart_tool' \
--exclude='./native/android/build' --exclude='./native/android/.gradle' \
--exclude='./backend/log' --exclude='./backend/tmp' --exclude='./infra/.env' --exclude='./.git' .
scp /tmp/matchlivetv-deploy.tar.gz "$SERVER:~/matchlivetv-deploy.tar.gz"
ssh "$SERVER" "mkdir -p $DEST && tar -xzf ~/matchlivetv-deploy.tar.gz -C $DEST"