Tikera is a full-stack cinema ticketing application built with React on the frontend and Laravel on the backend. It lets users browse movies, view screenings, select seats, and book tickets — while administrators can manage movies and screenings through a dedicated admin panel. This guide walks you through cloning the repository and running both servers locally.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/raczkodavid/Tikera/llms.txt
Use this file to discover all available pages before exploring further.
Prerequisites
Before you begin, make sure you have the following installed:- Node.js v16 or higher
- PHP 8.1 or higher
- Composer
Setup
Install backend dependencies
Move into the
server directory and install the PHP dependencies via Composer:Run migrations and seed the database
Run the database migrations and seed initial data (including the admin user):
Start the backend server
Start the Laravel development server from the The API will be available at
server directory:http://127.0.0.1:8000 by default.Want to explore Tikera without setting up locally? A live demo is available at https://tikera-v2-ten.vercel.app/. To access the admin panel, sign in with admin@example.com and the password admin.
Next steps
Movies and features
Learn how to browse movies, view screenings, and manage bookings in Tikera.
API overview
Explore the Laravel backend API endpoints used by the Tikera frontend.