Hi!
I have just released the introduction and part 1 of my next video series. In this series, I will build an E-commerce website from scratch using Django and Vue.js. I will use Stripe as the payment gateway.
I will try to explain things as good as I can and also explain why I solve things the way I do.
Todo list for part 1:
\-Create a virtual environment
\-Install Django and create a project
\-Set up the database
\-Create a superuser
\-Create a folder for the Django apps
\-Create folder and Django app for the core views (apps/core)
\-Create the base template
\-Create view for the frontpage and a very basic template
\-Creating a contact simple page
\-Check that everything is working
What do you think about this series?
First video can be found here:
[https://www.youtube.com/watch?v=bAG\_Ia8LX-M](https://www.youtube.com/watch?v=bAG_Ia8LX-M)
Liked and Subscribed. I looked through some of the tutorials. Job well done. As someone learning Django these will come in handy.
Part 2 is published: [https://www.youtube.com/watch?v=zPPfSEqUDTs](https://www.youtube.com/watch?v=zPPfSEqUDTs)
Todo list for part 2:
\-Create folder and app for the store app
\-Get list of products and show on the frontpage
\-Show detail view for a product
\-Show categories in the menu
\-Show detail view for a category (Title and list related products)
Part 3 is published: [https://www.youtube.com/watch?v=oGyg5kYTzEI](https://www.youtube.com/watch?v=oGyg5kYTzEI)
Todo list for part 3:
\-Create a footer and move “Contact” link down
\-Create an about page
\-Make it possible to set ordering for the categories
\-Add ordering to products, newest first
\-Only show featured products on the frontpage
\-Create folder and app for the cart
\-Create a view for the cart and show link in the menu
\—
Part 4 is published: [https://www.youtube.com/watch?v=-37Z4w\_PCvo](https://www.youtube.com/watch?v=-37Z4w_PCvo)
Todo list for part 4:
\-Add two settings for the cart in the settings file
\-Rename cart view to cart\_detail
\-Create a Cart class
\-Make it possible to add products to the cart
\-Make it possible to remove products from the cart