An open-source event management portal for Cursor community meetups, built by the community.
- Registration & Check-in — QR code registration and staff check-in tools
- Event Experience — Agenda, venues, resources, and real-time announcements
- Q&A System — Real-time questions with upvoting and moderation
- Polls & Surveys — Live polls during events and post-event feedback collection
- Slide Deck Viewer — Upload and present PDF slide decks with real-time page sync
- Competitions — Demo sign-ups, voting, and media uploads
- Speed Networking — Suggested conversation groups with table assignments
- Easter Egg Hunt — Cursor Credits scavenger hunt via QR codes
- Exchange Board — Attendee-to-attendee skill/resource exchange
- Admin Dashboard — Full event management, analytics, and moderation tools
- Multi-event Support — Manage multiple events with per-event configuration
- i18n Ready — Internationalisation support built in
- Framework: Next.js 14 (App Router)
- Database: Supabase (PostgreSQL + Realtime)
- Styling: Tailwind CSS
- Email: Resend
- Hosting: Render (see
render.yaml)
npm installCopy .env.example and fill in your values:
NEXT_PUBLIC_SUPABASE_URL=your_supabase_url
NEXT_PUBLIC_SUPABASE_ANON_KEY=your_supabase_anon_key
SUPABASE_SERVICE_ROLE_KEY=your_supabase_service_role_key
RESEND_API_KEY=your_resend_api_keyApply the base schema to your Supabase project:
# In the Supabase SQL Editor, run:
supabase/schema.sqlThen apply the incremental migrations in supabase/migrations/ in order. These add features like competitions, speed networking, slide decks, venues, credits, and more.
npm run devIf you are upgrading an existing deployment, read these guides before pulling new changes.
The slides system was migrated from individual slide management to single PDF deck uploads per event. This is a breaking change for existing slide data.
Full guide: SLIDE_DECK_MIGRATION.md
Quick steps:
- Clear existing slides (
npm run clear-slidesor runsupabase/migrations/clear_all_slides.sql) - Deploy — the new
SlideDeckAdminClientcomponent takes over automatically - Upload your PDF deck via the admin panel
All incremental schema changes live in supabase/migrations/. When pulling updates, check for new .sql files and apply them to your Supabase project via the SQL Editor. Key migrations include:
| Migration | What it does |
|---|---|
20260201_competitions.sql |
Competition system with demos and voting |
add_speed_networking.sql |
Speed networking groups and table assignments |
add_cursor_credits.sql |
Cursor Credits and easter egg hunt |
add_exchange_board.sql |
Attendee exchange board |
add_venues.sql |
Venue management with images |
add_app_settings_active_event.sql |
App-level settings and active event config |
comprehensive_analytics_tracking.sql |
Event analytics and tracking |
See supabase/migrations/ for the complete list.
See supabase/schema.sql for the base schema. Incremental changes are in supabase/migrations/.
This project is configured for deployment on Render. See render.yaml for the full configuration.
This is a community-led project. Contributions, feature requests, and bug reports are welcome.
Open source — built for and by the Cursor community.