Skip to content

Latest commit

 

History

History
67 lines (38 loc) · 1.7 KB

File metadata and controls

67 lines (38 loc) · 1.7 KB

📝 Blog Project (Django)

This is a simple blog project built with Django. It allows users to create, read, update, and delete blog posts.

🚀 Features

  • User authentication (login/signup/logout)

  • Create, update, delete posts

  • Responsive design

  • Admin panel

    📸 Screenshots

Home Page

1

Post List Page

2

Post Detail Page

3

Create Post Page

4

Edit Post Page

5

Login Page

6

Admin Panel

7

📦 Installation

# Clone the repo
git clone https://github.com/Smarikatripathi/Blog_Project.git
cd blog_project
cd mysite

# Create virtual environment
python -m venv venv
venv\Scripts\activate  # Or use source venv/bin/activate on Mac/Linux

# Install dependencies
pip install -r requirements.txt

# Apply migrations
python manage.py migrate

# Run server
python manage.py runserver