Based on Django REST Framework, Django Rest Blog is the blog website which you can use its api to create/edit/delete blogs on.
- Install python3.x in your system;
git
andclone
this repository andcd
your path (where the same folder as LICENSE);- Use
pip install virtualenv
to install virtualenv in your system; - Use
virtualenv env
to create a new env; - Use
source env/bin/activate
to activateenv
; cd django_blog
;- Use
pip install -r requirements/base.txt
to install requirements; cd MLBlog
;python manage.py makemigrations
;python manage.py migrate
;
Run server by typing python manage.py runserver
and you can operate on http://127.0.0.1:8000/blogs/
.