An open API service indexing awesome lists of open source software.

https://github.com/jerryblessed/django-netflix-project


https://github.com/jerryblessed/django-netflix-project

Last synced: over 1 year ago
JSON representation

Awesome Lists containing this project

README

          

# django-netflix-clone
A simple full-stack clone of Netflix website using Django.

## This project is the result of this [Dev.to](https://dev.to/fayomihorace/build-a-netflix-clone-with-django-part-1-complete-beginner-course-3al3) tutorial [Build a Netflix clone with Django (Complete beginner course)](https://dev.to/fayomihorace/build-a-netflix-clone-with-django-part-1-complete-beginner-course-3al3).

## 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 have `virtualenv` installed)
- `source venv/bin/activate`
- `pip install -r requirements.txt`
- `python 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`