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

https://github.com/ruslanzharkov/django-blog

Django Python simple blog
https://github.com/ruslanzharkov/django-blog

blog django-application django-python python-3-5 simple-blog

Last synced: 4 months ago
JSON representation

Django Python simple blog

Awesome Lists containing this project

README

        

# Django Python simple blog with CRUD operations

> This blog have administration for posts and comments. You may publish comment or delete comments and posts.
If you created new post, this post will be published in drafts.

![screenshot from 2017-10-22 16-10-25](https://user-images.githubusercontent.com/28437795/31860904-2253bce8-b744-11e7-9e60-7426320770a0.png)

## Requiments
* python 3.5
* django 1.11.5

## Installation

1. git clone https://github.com/ruslanzharkov/django-blog.git
2. python3 -m venv myvenv
3. workon myvenv
4. pip install Django==1.11.5
5. python manage.py createsuperuser
6. python manage.py makemigrations blog
7. python manage.py migrate blog
8. python manage.py run server and then go to http://localhost:8000/