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
- Host: GitHub
- URL: https://github.com/ruslanzharkov/django-blog
- Owner: ruslanzharkov
- Created: 2017-10-04T16:17:38.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-11-21T18:42:46.000Z (over 7 years ago)
- Last Synced: 2025-01-19T07:42:25.044Z (6 months ago)
- Topics: blog, django-application, django-python, python-3-5, simple-blog
- Language: Python
- Size: 28.3 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.
## 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/