Monorepo for sponsorsearch.co.uk — search UK skilled worker visa sponsors and view detailed company profiles.
apps/
web/ → TanStack Start web app (deployed to Vercel)
bun install # Install all workspace dependenciesDev servers use portless for clean .localhost URLs with HTTPS. One-time setup:
sudo bunx portless proxy start --httpsThen start developing:
bun run dev # Start all apps (web → https://web.localhost)To test on other devices (phone/tablet) on the same WiFi:
sudo bunx portless proxy start --lan --https # Restart proxy in LAN mode
bun run dev # Access via https://web.local on any deviceTo skip portless and use localhost:3000 directly:
bun run --filter @ss/web dev:no-proxybun run build # Build all apps
bun run lint # Lint all appsTo target a specific app:
bun run build --filter=@ss/web- Monorepo: Turborepo with bun workspaces
- Web app: TanStack Start (React 19), Tailwind CSS v4, Drizzle ORM, Neon Postgres
- Deployment: Vercel (web)
- CI: GitHub Actions (automated HMRC data sync)
See apps/web/README.md for web app details.