TickEvent is a clean, minimal event-sharing and ticketing web app built with Next.js, Prisma, BetterAuth, and ShadCN/UI.

🎟️ TickEvent

TickEvent is a clean, minimal event-sharing and ticketing web app built with Next.js, Prisma, BetterAuth, and ShadCN/UI. Users can create events, upload images, sell tickets via Stripe, and track ordersβ€”all.

πŸš€ Live Demo

πŸ”— https://tick-event.vercel.app

GitHub Repo

πŸ”— https://github.com/saidMounaim/tick-event

✨ Features

  • πŸ” Sign up / Sign in with BetterAuth
  • πŸŽ‰ Create events with title, image, price, and ticket count
  • πŸ“Έ Upload images using ImageKit
  • πŸ’³ Buy tickets with secure Stripe Checkout
  • πŸ“Š View your ticket orders in your personal dashboard
  • πŸ’… Fully responsive, clean design using ShadCN/UI and Tailwind CSS

πŸ“¦ Tech Stack

πŸ›  Getting Started

1. Clone the repository

git clone https://github.com/saidMounaim/tick-event.git
cd tick-event

2. Install dependencies

npm install

3. Configure environment variables

Create a .env file in the root:

# Database
DATABASE_URL="postgresql://..."

# BetterAuth
BETTER_AUTH_BASE_URL="https://tick-event.vercel.app"
BETTER_AUTH_SECRET="your_betterauth_secret"

# Stripe
STRIPE_SECRET_KEY="sk_test_..."
STRIPE_WEBHOOK_SECRET="whsec_..."
NEXT_PUBLIC_STRIPE_PUBLISHABLE_KEY="pk_test_..."

# ImageKit
IMAGEKIT_PUBLIC_KEY="your_public_key"
IMAGEKIT_PRIVATE_KEY="your_private_key"
IMAGEKIT_URL_ENDPOINT="https://ik.imagekit.io/your_id"

# App
NEXT_PUBLIC_APP_URL="https://tick-event.vercel.app"

4. Start the dev server

npm run dev

πŸ’Ό Contribution

All contributions are welcome!

Fork the repo, create a new branch, and submit a pull request.

Similar Posts