pika-flix is a Django web app to enable users share videos about cooking, food & hotel reviews.
-
Add "pikaflix" to your INSTALLED_APPS setting:
INSTALLED_APPS = [
...,
"pf",
]
-
Include the pikaflix URLconf in your project urls.py:
path("pikaflix/", include("pikaflix.urls")),
-
Run
python3 manage.py migrate
to create models. -
Start the development server and visit the admin to create a video.
-
Visit the
/home/
URL to see how it works.