django-netflix-clone
A simple full-stack clone of Netflix website using Django.
This project is the result of this Dev.to tutorial Build a Netflix clone with Django (Complete beginner course).
Demo
https://morning-tree-7095.fly.dev/
If you're already familiar with Django, you don't need to follow the tutorial. Just follow these few step:
Setup the project
virtualenv venv(make sure you havevirtualenvinstalled)source venv/bin/activatepip install -r requirements.txtpython manage.py migrate
Load fixtures (Optional)
python manage.py loaddata netflix/fixtures/initial.json
Create superuser (Optional)
python manage.py createsuperuser
Start the developement server
python manage.py runserver
Run tests
python manage.py test