26
Jul
Introduction Welcome back to my journey of building a blog app using Django without using ChatGPT. This week, I focused on implementing key features to enhance my blog app. I added a functionality that allow users to create posts, comment on posts, and like other user's posts. Here's a detailed breakdown of what I did: Create Django posts app python manage.py startapp posts Enter fullscreen mode Exit fullscreen mode Designing the Post Model I started by designing the Post model. This model will store the blog posts created by users: from django.db import models from django.contrib.auth.models import User from django.utils…