Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/prashver/django-blog-app
- Owner: prashver
- Created: 2021-05-18T09:05:56.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-05-27T07:10:42.000Z (over 2 years ago)
- Last Synced: 2024-11-14T17:12:04.357Z (3 months ago)
- Topics: blog-application, deployment, django, python, user-authentication
- Language: Python
- Homepage:
- Size: 11.7 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.