
Django Realtime Chat App Tutorial - Simple Django Tutorial With Channels And Redis
Learn how to build a simple realtime chat application using Django, Web sockets, Channels and Redis.
Read moreDjango is a modern framework for building web applications using Python. This is my favorite backend framework and I recommend it to everyone I talk to about development.
Learn how to build a simple realtime chat application using Django, Web sockets, Channels and Redis.
Read more
Django comes with a fantastic feature called Messages. This makes it easy to show messages to your users.
Read more
Django is a fantastic framework for building web sites and web applications. In this article, you can read about 7 ways to make money with Django.
Read more
In this brand new tutorial series I will show you how to build a web app where users can sign up, create clients, generate pdf invoices and send them.
Read more
I often get asked how people can become a better Django developer, how to go beyond the basics and what they need to know to get a job.
Read more
A few years ago I wanted to build an affiliate website that could be fully automated to see how much money it could make me. Now, that website makes me around a thousand dollars of profit per month.
Read more
I use DigitalOcean for all of my projects, Code With Stein as well. DigitalOcean is cheap, good servers and a easy to use control panel.
Read more
In this Django and Vue.js tutorial we'll be building a simple todo app. This is a trivial thing to do when you know a programming language, but it's also a great way to learn many of the key concepts of programming.
Read more
This is part 2 of this series. In this part, we will make it possible for users to sign up, log in and log out. Plus a few other things.
Read more
This is part 1 of this series. In this part, we will install some software and set up our environment. I will also create a Django app and some templates. The templates will be used for the front page, terms of service, privacy policy and plans.
Read more
I'm soon ready to start publishing videos for my upcoming series "Building a time tracking SaaS using Django and Vue". In this post, you'll get to see a pre release video with information about it.
Read more
Yesterday we added sitemaps as part of SEO. Today, we need a file called robots.txt to tell bots where they can't go on our website.
Read more
Sitemaps are an important part of SEO. In this guide, I will show you how to generate one using Django.
Read more
Welcome back to the second part of this series. In this part, we will do some more backend code.
Read more
In this video, I will show you how to build a simple CRUD (create, read, update and delete) app using Django 3.
Read more
Django's ORM is fast, powerful and easy to use. The problem is that it's easy to make mistakes. In this post I'll talk a little bit about optimizations.
Read more
Learn how to quickly set up a simple blog using Django 3. The blog will have posts and comments.
Read more
Designing good Django models is very important when it comes to readability and to maintainability. In this post I'll share some good tips on how to implement some good techniques.
Read more
Django and Vue.js are my two favorite frameworks for building the best websites. In this post I will tell you everything you need to know to use them together.
Read more
It's normal to have ForeignKeys field in ModelForm. And if this is a hidden field, the save function will crash.
Read more
In this guide, I will show you how to create a simple modelform using Django.
Read more
Django has some shortcuts to help you speed up your development process even more. In this post we'll cover a few of them.
Read more
Sometimes you want to select a list of random objects from a QuerySet. Using a built in function from Python, this is a really simple task.
Read more
Building a social network isn't just a really cool project, but it's also a project that can teach you a lot of new cool things. In this video we will begin by installing the software we need, creating a new Django project and build a simple Twitter clone piece by piece. At the end of this video, you will have a working social network that we will deploy to a live server.
Read more
A superuser has access to everything in the Django admin interface and has the possibility to create other users as well. But how do you create one?
Read more