Movie Database with Django and Bootstrap 4
🎯 OMDb API - Utilize the extensive omDB API
🎯 Inject MovieData - Inject Movie Data if not locally available
🎯 WatchList - Add and manage movies, series etc to seperate user watchlist
🎯 Sort by Actor's and Genre's - Sort locally movie data based on actor and genre.
🎯 Reviews and Comments - Add a review for a movie and other users can like, dislike or comment on the review.
These instructions will get you a copy of the project up and running on your local machine for deployement and development.
You'll need Git and Python 3.8+ installed on your local computer.
python@3.8 or higher
git@2.17.1 or higher
You can also use the Zip file and extract the folder.
From your command line, clone and deploy:
# Clone this repository
$ git clone git@github.com:AnimeshRy/eraDB.git
# Go into the repository
$ cd eraDB
# Install dependencies
# if Pipenv available ? run
$ pipenv install
# Else
$ pip install -r requirements.txt
# You need some environment variables to setup.
touch .env
# replace string with a random string
SECRET_KEY={string}
DEBUG=True
omdbKey={omdbAPIKey}
# Create media directory
mkdir media
Get your omdb API Key from here.
After installing the requirements, we'll need to setup some Django commands.
python manage.py check
python manage.py migrate
You can also create a account from the # page
python manage.py createsuperuser
# follow instruction
python manage.py runserver
Navigate to http://localhost:8000/ endpoint in your browser.
Admin endpoint is at http://127.0.0.1:8000/admin/
This project is licensed under the MIT License - see the LICENSE.md file for details
-
This project is just meant as a little side project and is not meant as a disrespect towards existing movie databases.
-
The project will not be maintained, anyone can clone and have fun with it.
-
There isn't any point in deploying this app as the API calls are limited and the database gets populated very fast based on every unique movie click.