A production-ready full-stack platform for college tech fests, hackathons, and workshops. Built with speed, security, and developer experience in mind.
- Frontend: Next.js 15 (App Router), TailwindCSS, Shadcn UI (Base UI), Zustand, Framer Motion
- Backend: Node.js, Express, Prisma ORM, JWT Auth, Zod
- Database: PostgreSQL
- Infrastructure: Docker, Redis (Jobs/Caching)
- 🔐 Multi-Role Authentication: STUDENT, ORGANIZER, and ADMIN roles with JWT protection.
- 📅 Event Management: Organizers can create, edit, and publish events.
- 🎟️ Ticketing System: Multiple ticket types (Paid/Free), capacity limits, and instant order processing.
- 🔍 Event Discovery: Public listing and detailed view for upcoming tech fests.
- 📊 Organizer Dashboard: Real-time sales analytics, registration lists, and event tracking.
- 📷 QR Check-in: Integrated mobile-friendly QR scanner for organizers to validate attendee tickets.
- 🎫 Digital Tickets: Personalized tickets with unique QR codes and print-to-PDF support.
- Node.js (v18+)
- Docker & Docker Compose
- PostgreSQL (or use Docker)
-
Clone the repository
git clone <repo-url> cd <repo-name>
-
Backend Setup
cd apps/backend npm install cp .env.example .env # Update .env with your DATABASE_URL and JWT_SECRET npx prisma generate npx prisma migrate dev npm run dev
-
Frontend Setup
cd apps/frontend npm install cp .env.example .env.local # Update NEXT_PUBLIC_API_URL (default: http://localhost:5000/api) npm run dev
-
Infrastructure (optional)
docker-compose up -d
root/
├── apps/
│ ├── frontend/ # Next.js Application
│ └── backend/ # Express + Prisma API
├── docker-compose.yml # Infrastructure setup
└── README.mdThis is an open-source project. Contributions are welcome!
- Fork the repo.
- Create your feature branch.
- Commit your changes.
- Push to the branch.
- Create a Pull Request.
MIT License.