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

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

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.