This is a clone of the popular video streaming site Netflix built using Django. Anyone can stream their movies and tv shows in this app. Project is created with-
- Django
- Bootstrap
- Heroku
The user can perform the following functions:
- A user can view the different movies and Tv shows that are available.
- A user can view a description Of the movie and its current rating.
- A user watch a trailer for a movie or a Tv Show.
- A user can watch any episode or movie thar are avaliable.
- A user can stream directly in the app without downloading any episode or movie.
The application requires the following installations to operate:
- pip
- gunicorn
- django
- postgresql
- requests
python 3.10.5
The following is a basic workflow that you can use as a quick reference for developing a Django Project.
- Within a new directory, create and activate a virtualenv.
- Install Django.
- Create your project:
django-admin.py startproject
- Create a new app:
python manage.py startapp
- Add your app to the INSTALLED_APPS tuple.
- Map your Project’s urls.py file to the new app.
- In your App directory, create a urls.py file to define your App’s URLs.
- Add views, associated with the URLs, in your App’s views.py; make sure they return a HttpResponse object. Depending on the situation, you may also need to query the model (database) to get the required data back requested by the end user.
- Create a templates and static directory within your project root.
- Update settings.py to include the paths to your templates.
- Add a template (HTML file) to the templates directory. Within that file, you can include the static file with -
{% load static %}
- Update the views.py file as necessary.
- Update the database engine to settings.py (if necessary, as it defaults to SQLite).
- Create and apply a new migration.
- Create a super user.
- Add an admin.py file in each App that you want access to in the Admin.
- Create your models for each App.
- Create and apply a new migration. (Do this whenever you make any change to a model).
- Create a forms.py file at the App to define form-related classes; define your ModelForm classes here.
- Add or update a view for handling the form logic - e.g., displaying the form, saving the form data, alerting the user about validation errors, etc.
- Add or update a template to display the form.
- Add a urlpattern in the App’s urls.py file for the new view.
- Create a UserForm
- Add a view for creating a new user.
- Add a template to display the form.
- Add a urlpattern for the new view.
- Add a view for handling user credentials.
- Create a template to display a login form.
- Add a urlpattern for the new view.
- Find the common parts of each page (i.e., header, sidebar, footer).
- Add these parts to a base template
- Create specific. templates that inherent from the base template.
- Copy the project seperately
- Go to 'Getting Started on Heroku with Python'
- Create an Heroku account
- install pipenv
- Install git ( check git --version)
- Install Heroku CLI
- Login heroku
- Create a virtual enviroment
- Run manage.py not gonna run - pip freeze nothing installing
- Check which version django,requests you have and install it
- Run manage.py and then stop it
- Go to django heroku
- Create a Procfile and
- Install django-heroku
- Add stuff to settings.py file
- Install guincorn
- pip freeze > requirements.txt
- heroku create (to create an app on heroku)
- git status git commands (git push heroku master)
- Open up the website
- Admin panel not working. heroku run bash. Migrations
Created By: Ayush Gupta
Gmail: ayush20501.ag@gmail.com
Linkedin
Instagram