This is a simple blog project built with Django. It allows users to create, read, update, and delete blog posts.
- User authentication (login/signup/logout)
- Create, update, delete posts
- Responsive design
- Admin panel
# Clone the repo
git clone https://github.com/Smarikatripathi/Blog_Project.git
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