Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/prashver/django-blog-app

This Django blog project allows users to publish and manage blogs after registration and login. Features include user profile updates, blog search, and comment management. The application provides a simple and intuitive platform for blogging.
https://github.com/prashver/django-blog-app

blog-application deployment django python user-authentication

Last synced: 28 days ago
JSON representation

This Django blog project allows users to publish and manage blogs after registration and login. Features include user profile updates, blog search, and comment management. The application provides a simple and intuitive platform for blogging.

Awesome Lists containing this project

README

        

# Django-blog-application

[![Python Version](https://img.shields.io/badge/python-3.8-brightgreen.svg)](https://python.org)
[![Django Version](https://img.shields.io/badge/django-3.2.3-brightgreen.svg)](https://djangoproject.com)

This blogs project allows the user to publish their blogs in the application. In this Django App, user initially need to register in and login to post their blogs. There are different features added in this application. Users can update their profile, can search through the blogs based on title of the post, Shows latest posts in the sidebar. The comments features allows a reader to post their comment for a post, can also remove, approve and edit it.

# Running the Project Locally
First, clone the repository to your local machine:
```bash
git clone https://github.com/prashver/Blog-application.git
```

Install the requirements:
```bash
pip install -r requirements.txt
```

Create the database:
```bash
python manage.py migrate
```

Finally, run the development server:
```bash
python manage.py runserver
```

The project will be available at 127.0.0.1:8000.