Skip to content

Modern event ticketing platform with real-time queuing and instant payments. Built with Next.js 14, Convex, Clerk, and Stripe Connect. Features include smart waiting lists, automatic refunds, rate limiting, and beautiful UI with shadcn. Perfect for event organizers and attendees alike.

Notifications You must be signed in to change notification settings

sonnysangha/ticket-marketplace-saas-nextjs15-convex-clerk-stripe-connect

Repository files navigation

Ticketr - Real-time Event Ticketing Platform

A modern, real-time event ticketing platform built with Next.js 14, Convex, Clerk, and Stripe Connect. Features a sophisticated queue system, real-time updates, and secure payment processing.

Features

For Event Attendees

  • 🎫 Real-time ticket availability tracking
  • ⚑ Smart queuing system with position updates
  • πŸ•’ Time-limited ticket offers
  • πŸ“± Mobile-friendly ticket management
  • πŸ”’ Secure payment processing with Stripe
  • πŸ“² Digital tickets with QR codes
  • πŸ’Έ Automatic refunds for cancelled events

For Event Organizers

  • πŸ’° Direct payments via Stripe Connect
  • πŸ“Š Real-time sales monitoring
  • 🎯 Automated queue management
  • πŸ“ˆ Event analytics and tracking
  • πŸ”„ Automatic ticket recycling
  • 🎟️ Customizable ticket limits
  • ❌ Event cancellation with automatic refunds
  • πŸ”„ Bulk refund processing

Technical Features

  • πŸš€ Real-time updates using Convex
  • πŸ‘€ Authentication with Clerk
  • πŸ’³ Payment processing with Stripe Connect
  • 🌐 Server-side and client-side rendering
  • 🎨 Modern UI with Tailwind CSS and shadcn/ui
  • πŸ“± Responsive design
  • πŸ›‘οΈ Rate limiting for queue joins and purchases
  • πŸ”’ Automated fraud prevention
  • πŸ”” Toast notifications for real-time feedback
  • ✨ Beautiful, accessible components with shadcn/ui

UI/UX Features

  • 🎯 Instant feedback with toast notifications
  • 🎨 Consistent design system using shadcn/ui
  • β™Ώ Fully accessible components
  • 🎭 Animated transitions and feedback
  • πŸ“± Responsive design across all devices
  • πŸ”„ Loading states and animations
  • πŸ’« Micro-interactions for better engagement

Getting Started

Prerequisites

  • Node.js 18+
  • npm/yarn
  • Stripe Account
  • Clerk Account
  • Convex Account

Environment Variables

Create a .env.local file with:

NEXT_PUBLIC_CONVEX_URL=your_convex_url
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY=your_clerk_key
CLERK_SECRET_KEY=your_clerk_secret
STRIPE_SECRET_KEY=your_stripe_secret
STRIPE_WEBHOOK_SECRET=your_webhook_secret
NEXT_PUBLIC_APP_URL=http://localhost:3000

Installation

# Clone the repository
git clone https://github.com/sonnysangha/ticket-marketplace-saas-nextjs15-convex-clerk-stripe-connect

# Install dependencies
npm install

# Start the development server
npm run dev

# In a separate terminal, start Convex
npx convex dev

Setting up Clerk

  1. Create a Clerk application by Clicking here!
  2. Configure authentication providers
  3. Set up redirect URLs
  4. Add environment variables

Setting up Convex

  1. Create a Convex account by Clicking here!
  2. Create a new project
  3. Install the Convex CLI:
    npm install convex
  4. Initialize Convex in your project:
    npx convex init
  5. Copy your deployment URL from the Convex dashboard and add it to your .env.local:
    NEXT_PUBLIC_CONVEX_URL=your_deployment_url
  6. Start the Convex development server:
    npx convex dev

Note: Keep the Convex development server running while working on your project. It will sync your backend functions and database schema automatically.

Setting up Stripe

  1. Create a Stripe account
  2. Enable Stripe Connect
  3. Set up webhook endpoints
  4. Configure payment settings

Setting up Stripe Webhooks for Local Development

  1. Install the Stripe CLI:

    # macOS
    brew install stripe/stripe-cli/stripe
    
    # Windows (using scoop)
    scoop install stripe
    
    # Linux
    curl -s https://packages.stripe.dev/api/security/keypair/stripe-cli-gpg/public | gpg --dearmor | sudo tee /usr/share/keyrings/stripe.gpg
    echo "deb [signed-by=/usr/share/keyrings/stripe.gpg] https://packages.stripe.dev/stripe-cli-debian-local stable main" | sudo tee -a /etc/apt/sources.list.d/stripe.list
    sudo apt update
    sudo apt install stripe
  2. Login to Stripe CLI:

    stripe login
  3. Start webhook forwarding:

    stripe listen --forward-to localhost:3000/api/webhooks/stripe
  4. Copy the webhook signing secret that is displayed after running the listen command and add it to your .env.local:

    STRIPE_WEBHOOK_SECRET=whsec_xxxxx
  5. Keep the webhook forwarding running while testing payments locally. The CLI will forward all webhook events to your local endpoint.

Note: Make sure your webhook endpoint (/api/webhooks/stripe) is properly configured to handle incoming webhook events.

Setting up UI Components

  1. Install shadcn/ui CLI:

    npx shadcn-ui@latest init
  2. Install required components:

    npx shadcn-ui@latest add toast
    npx shadcn-ui@latest add button
    npx shadcn-ui@latest add card
    npx shadcn-ui@latest add dialog
  3. Configure toast notifications in your layout:

    npx shadcn-ui@latest add toaster

Architecture

Database Schema

  • Events
  • Tickets
  • Waiting List
  • Users

Key Components

  • Real-time queue management
  • Rate limiting
  • Automated offer expiration
  • Payment processing
  • User synchronization

Usage

Creating an Event

  1. Sign up as an event organizer
  2. Complete Stripe Connect onboarding
  3. Create event with details and ticket quantity
  4. Publish event

Purchasing Tickets

  1. Browse available events
  2. Join queue for desired event
  3. Receive ticket offer
  4. Complete purchase within time limit
  5. Access digital ticket with QR cod

Join the worlds best developer course & community Zero to Full Stack Hero! πŸš€

Want to Master Modern Web Development?

This project was built as part of the Zero to Full Stack Hero 2.0 course, taught by Sonny Sangha. Join thousands of developers and learn how to build projects like this and much more!

What You'll Get:

  • πŸ“š Comprehensive Full Stack Development Training
  • 🎯 50+ Real-World Projects
  • 🀝 Access to the PAPAFAM Developer Community
  • πŸŽ“ Weekly Live Coaching Calls with Sonny
  • πŸ€– AI & SaaS Development Modules
  • πŸ’Ό Career Guidance & Interview Prep

Course Features:

  • Lifetime Access to All Content
  • Live Coaching Sessions
  • Private Discord Community
  • AI Mastery Module
  • SaaS Development Track
  • And much more!

Join Zero to Full Stack Hero Today!

Support

For support, email [email protected]


Built with ❀️ for the PAPAFAM

Handling Refunds and Cancellations

  1. Event organizers can cancel events from their dashboard
  2. System automatically processes refunds for all ticket holders
  3. Refund status can be tracked in user dashboard

User Experience

  1. Real-time Feedback

    • Instant purchase confirmations
    • Queue position updates
    • Error notifications
    • Success page
    • Ticket status
  2. Interactive Elements

    • Animated buttons and cards
    • Loading states
    • Progress indicators
    • Skeleton loaders
    • Smooth transitions

About

Modern event ticketing platform with real-time queuing and instant payments. Built with Next.js 14, Convex, Clerk, and Stripe Connect. Features include smart waiting lists, automatic refunds, rate limiting, and beautiful UI with shadcn. Perfect for event organizers and attendees alike.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published