Welcome to BookMyEntertainment, your ultimate destination for hassle-free entertainment! Discover and book tickets to the hottest movies, electrifying concerts, thrilling sports events, and captivating theatrical performances, all at your fingertips. Experience the joy of seamless online ticketing and get ready to embark on unforgettable experiences with BookMyEntertainment.
This diagram provides a visual representation of the entities and their relationships within the BookMyEntertainment platform.
- Homepage: Online ticket booking for movies, concerts, sports events, and theatrical performances.
- Authentication: User registration and login for personalized experiences.
- Event Discovery: Explore a vast array of entertainment events, including movies, concerts, sports matches, plays, and more, with detailed information on dates, venues, and showtimes.
- Shows Page: View all the shows related to a particular movie, including matinee, evening, late night, start time, end time, seats, price, location, and release date information.
- Multiple Languages: Enjoy a multilingual platform to cater to a diverse audience and provide a user-friendly experience for all.
- Multiple Generes: Enjoy a multiple genere movies.
- MyBookings: View your booked movie list.
- Help Center: Access reliable customer support to address any queries, concerns, or issues related to bookings or the app.
- Admin Side: Manage all user activity, movies, and shows functionality.
- Responsive Design: The application is designed to be responsive and accessible on various devices.
- Modular Architecture: BookMyEntertainment is developed using a modular architecture for code reusability and scalability.
- RESTful API: The backend follows RESTful principles for clear and consistent API structure.
- Secure Authentication: User authentication and login processes use secure industry-standard methods.
- Data Validation: Input data is thoroughly validated on both client-side and server-side to prevent security vulnerabilities.
- Error Handling and Logging: Proper error handling and logging mechanisms are implemented to catch and log unexpected errors or exceptions.
- Database Optimization: The database design is optimized for efficient data retrieval and storage.
Here you can get all the movies with their details information.
Method | Endpoint | Description |
---|---|---|
GET | /api/movies | Get all the movies with their details. |
Here you can get all the shows related to a particular movie.
Method | Endpoint | Description |
---|---|---|
GET | /api/shows | Get all the shows. |
POST | /api/bookshow | Book a show for a specific movie. |
The user management page allows the admin to perform CRUD operations on the user profiles.
Method | Endpoint | Description |
---|---|---|
GET | /api/users | Get a list of all logged-in users. |
PUT | /api/users/:user_id | Update a user's information. |
DELETE | /api/users/:user_id | Delete a user's information. |
The movie management page allows the admin to perform CRUD operations on the movies.
Method | Endpoint | Description |
---|---|---|
GET | /api/movies | Get a list of all movies available. |
GET | /api/movies/s | Get a list of all movies available. |
GET | /api/movies/:movie_id | Get details of a particular movie. |
PUT | /api/movies/:movie_id | Update details of a particular movie. |
DELETE | /api/movies/:movie_id | Delete a particular movie. |
The shows management page allows the admin to perform CRUD operations on the shows.
Method | Endpoint | Description |
---|---|---|
GET | /api/shows | Get a list of all shows available. |
PUT | /api/shows/:show_id | Update a show's information. |
POST | /api/shows/:show_id | Create a new show for a specific movie. |
DELETE | /api/shows/:show_id | Delete a show for a specific movie. |
Here users can see their booked movie list.
Method | Endpoint | Description |
---|---|---|
GET | /api/bookshow | Get a list of all bookings made by the user. |
DELETE | /api/bookshow/:show_id | Cancel a booking made by the user. |
# Clone the repository
git clone https://github.com/Namrata0407/BookMyEntertainment.git
# Install dependencies and navigate to the project directory
cd BookMyEntertainment
npm install
# Set up environment variables
Create a .env file in the root directory and add the necessary environment variables (e.g., database connection string, API keys).
# Run the application
npm start
# For the backend
cd BookMyEntertainment
python app.py