An Application to book movie tickets.
The application has two users Theatre staff and users who book tickets. The theatre staff can Create, Update, Delete Movies and add Shows for each movie on any day. The end users can book tickets after creating an account. The application is developed using Django the database used is PostgreSQL.
django-admin startproject movieticket
cd movieticket
django-admin startapp accounts
django-admin startapp staff
django-admin startapp booking
- add app names,
- change default user model, to create custom user model
- change database configuration in .env file file.
Python, Pip, Virtualenv, Django, Other (psycopg2-binary, crispy-bootstrap5, django-crispy-forms, psycopg2, python-dotenv)
pip install -r requirements.txt
Python manage.py runserver
This project is licensed under the MIT License - see the LICENSE.md file for details
Inspiration, code snippets, etc.