From be55729482296663da8c96723bfd22080e6762c1 Mon Sep 17 00:00:00 2001 From: yyamashita Date: Wed, 6 May 2026 22:07:53 +0900 Subject: Add Tokyo livehouse event aggregator service Full-stack React Router v7 app that scrapes event listings from major Tokyo live venues (Liquid Room, WWW/WWW X, Shibuya O-EAST, Shinjuku LOFT, Club Quattro) and stores them in SQLite for browsing and search. - Modular scraper architecture: add a new venue by dropping a file in app/scrapers/ and registering it in index.ts - Routes: /events (filter by keyword/venue/date), /events/:id, /venues, GET /api/scrape - EventCard shows artist, date/time, venue, ticket URL, and fee - Post-scrape per-venue Markdown files generated to events/ (dev reference) - /add-livehouse Claude Code skill defined in .claude/commands/ Co-Authored-By: Claude Sonnet 4.6 --- app/scrapers/index.ts | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 app/scrapers/index.ts (limited to 'app/scrapers/index.ts') diff --git a/app/scrapers/index.ts b/app/scrapers/index.ts new file mode 100644 index 0000000..97d2586 --- /dev/null +++ b/app/scrapers/index.ts @@ -0,0 +1,20 @@ +/** + * Registry of all venue scrapers. + * To add a new venue: create a new file implementing Scraper, then add it here. + */ +import type { Scraper } from "./base"; +import { scraper as liquidRoom } from "./liquid-room"; +import { scraper as wwwShibuya } from "./www-shibuya"; +import { scraper as shibuyaO } from "./shibuya-o"; +import { scraper as shinjukuLoft } from "./shinjuku-loft"; +import { scraper as clubQuattro } from "./club-quattro"; + +export const ALL_SCRAPERS: Scraper[] = [ + liquidRoom, + wwwShibuya, + shibuyaO, + shinjukuLoft, + clubQuattro, +]; + +export type { Scraper } from "./base"; -- cgit v1.2.3