# Match Live TV — Piani commerciali ## Piani | | Free | Premium Light | Premium Full | |---|------|---------------|----------------| | Account trasmettitori | 1 | 5 | Illimitati | | Partite in contemporanea | 1 | 3 | 10 | | Live Match Live TV | Sì | Sì | Sì | | YouTube | No | Match Live TV | Canale società | | Replay server | No | 30 giorni | 90 giorni | | Download telefono | No | Sì | Sì | | Prezzo lancio | €0 | €59/anno o €7,90/mese | €199/anno o €24,90/mese | | Listino | — | €79/anno | €249/anno | | Embed sito società | No | No | In arrivo | Il punteggio in diretta si gestisce tramite **link regia** condivisibile (WhatsApp, email, SMS…): non serve un account per chi fa il tabellone. Esigenze custom: contatto `info@matchlivetv.it`. ## Sito - `/` — Landing - `/funzionalita` — Feature - `/prezzi` — Prezzi (statici in pagina) - `/live` — Dirette pubbliche - `/regia/:token` — Pannello punteggio mobile (link condiviso) - `/signup` — Registrazione → squadra → dashboard ## Stripe ```bash STRIPE_PREMIUM_LIGHT_MONTHLY_PRICE_ID=price_... STRIPE_PREMIUM_LIGHT_YEARLY_PRICE_ID=price_... STRIPE_PREMIUM_FULL_MONTHLY_PRICE_ID=price_... STRIPE_PREMIUM_FULL_YEARLY_PRICE_ID=price_... STRIPE_WEBHOOK_SECRET=whsec_... ``` Checkout: `GET /clubs/:id/checkout?plan=premium_light|premium_full&interval=monthly|yearly` **Sicurezza pagamenti:** non inviare mai `card[number]`, CVC o scadenza all'API Stripe dal backend. Usare solo Checkout/Customer Portal. I test locali vanno fatti con carta `4242…` **sulla pagina Stripe**, non con `PaymentMethod.create` in `rails runner`.