-
-
Notifications
You must be signed in to change notification settings - Fork 0
Web Dashboard
tonythethompson edited this page Jul 28, 2026
·
4 revisions
The Trackdub portal is a client-rendered React / TanStack Start SPA. No backend logic lives in this repo (no server functions, no Lovable Cloud, no Supabase). All API calls go to api.trackdub.com with cookie credentials.
portal.trackdub.com api.trackdub.com
(UI, routes, auth client) ──► Better Auth + D1 Worker
Route guards (UX only) ──► Worker authorizes every protected call
-
Auth: host-only session cookie on
api.trackdub.com(Secure; HttpOnly; SameSite=Lax). Portal never reads the cookie; it usescredentials: "include". - Signup: invite-only, enforced by the Worker. No public signup UI.
-
Guards:
ensure-sessionstyle client checks for UX; Worker is the real boundary.
| Variable | Default | Notes |
|---|---|---|
VITE_API_BASE_URL |
https://api.trackdub.com |
Public build var; compiled into the bundle |
VITE_APP_ENV |
production |
Optional banners/logging |
- Exact
Access-Control-Allow-Origin: https://portal.trackdub.com(never*) Access-Control-Allow-Credentials: true- Handles
OPTIONSpreflight - Portal origin in Better Auth
trustedOrigins
git clone https://github.com/trackdubllc/portal.trackdub.git
cd portal.trackdub
npm i
npm run devRun the Worker locally (or point VITE_API_BASE_URL at a deployed API) when exercising auth flows. See Cloud-API-and-Job-Management.
- Not the monorepo
frontend/Amplify + Cognito app - Not OpenAPI-generated from a C#
Trackdub.Api - Not a host for dubbing jobs (jobs/billing UI may appear later as stubs until the Worker ships those APIs)
- Cloud-Infrastructure-Deployment
- Marketing site: trackdub.com
Trackdub Engineering Wiki · Trackdub-gated · Trackdub · Contributing
Overview
Architecture
Pipeline
- Pipeline-Orchestration
- Media-Ingest-and-Preparation
- Transcription-and-VAD
- Diarization-and-Speaker-Management
- Translation-Engine
- Text-to-Speech
- Lip-Sync-and-Synthesis
- Mixing-and-Export
Desktop App
AI & Inference
- Inference-Routing-and-Planning
- ONNX-Execution-Providers
- Model-Manifests-and-Governance
- Hardware-Starter-Packs
Media & Audio
Data
Cloud & SaaS
- Cloud-API-and-Job-Management
- Web-Dashboard
- Billing-and-Quota-Management
- Webhook-Delivery-System
- Cloud-Infrastructure-Deployment
Development
Links