https://github.com/jerryblessed/django-netflix-project
https://github.com/jerryblessed/django-netflix-project
Last synced: over 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/jerryblessed/django-netflix-project
- Owner: Jerryblessed
- Created: 2024-12-16T15:46:20.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-26T00:46:41.000Z (over 1 year ago)
- Last Synced: 2025-02-12T07:26:34.842Z (over 1 year ago)
- Language: HTML
- Size: 313 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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`