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.
🔗 https://tick-event.vercel.app
- 🔐 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
- Next.js
- Tailwind CSS
- ShadCN/UI
- TypeScript
- Prisma ORM
- BetterAuth
- Stripe — payments
- ImageKit — image uploads
git clone https://github.com/saidMounaim/tick-event.git
cd tick-event
npm install
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"
npm run dev
All contributions are welcome!
Fork the repo, create a new branch, and submit a pull request.