Skip to content

ruslanzharkov/django-blog

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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/