The website should have the following features -
- An API to view all the movies playing in user's city
- An API to check all cinemas in which a movie is playing along with all the showtimes
- For each showtime, check the availability of seats
- User Sign up and login
- Ability to book a ticket. (No payment gateway integration is required. Assume tickets can be booked for free)
pip install virtualenv
virtualenv venv
.\venv\Scripts\activate
pip install django
django-admin startproject book_my_show
django-admin startapp heartbeat
pip install flake8
pip install pre-commit
pre-commit install
python manage.py runserver