Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 789 Bytes

README.md

File metadata and controls

23 lines (16 loc) · 789 Bytes

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

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/