A blog webapplication in django
with the functionality of -
- Draft post
- Read Time
- Slug
- Coments and Replies
- Image Upload
- Markdown TextEditor Support
- User Accounts
- CRUD Operations
- Search operation
Python 3.7 & up
Virtual Environment (pipenv or virtualenv)
$ cd /path/to/dev/folder
$ mkdir try_django
$ cd try_django
$ pipenv --python 3.7 install django==2.2.13
OR
$ pipenv shell
$ pipenv sync
$ cd ./tryBlog
$ python manage.py runserver