https://github.com/the-akira/django-blog
Full Featured Blog made with Django
https://github.com/the-akira/django-blog
django django-application django-blog django-framework django-rest-framework pagination password-hash python3 searchable
Last synced: about 2 months ago
JSON representation
Full Featured Blog made with Django
- Host: GitHub
- URL: https://github.com/the-akira/django-blog
- Owner: the-akira
- Created: 2019-11-15T20:31:29.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-04-21T20:40:08.000Z (about 2 years ago)
- Last Synced: 2025-01-18T18:46:56.840Z (3 months ago)
- Topics: django, django-application, django-blog, django-framework, django-rest-framework, pagination, password-hash, python3, searchable
- Language: JavaScript
- Homepage:
- Size: 3.81 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Django Blog
Full Featured Blog made with Django.
## Features Included
- User Registration
- Account Management
- Posts CRUD
- Pagination
- Search System
- Password Recovery
- Admin Interface provided by Django
- Web Service (REST API)## Installation
### Clone the Repository
```
git clone https://github.com/the-akira/Django-Blog.git
```### Inside the Main Directory
Create a Virtual Environment
```
python -m venv myvenv
```Activate the Virtual Environment
```
source myvenv/bin/activate
```Install Requirements
```
pip install -r requirements.txt
```Navigate to `mysite` and Run the Application
```
python manage.py runserver
```You can now open your Web Browser and navigate to `http://127.0.0.1:8000/` to see the Web Application.