使用Django快速搭建博客
- Python: 3.X
- Django: 1.10.x
- Mysql
- 博客文章 markdown 渲染,代码高亮
- 阅读排行榜/最新评论
- 多目标源博文分享
- 博文归档
- 友情链接
wget https://github.com/JarboU/django-blog2/archive/master.zip
or
git clone [email protected]:JarboU/django-blog2.git
pip install -r requirements.txt #安装所有依赖
setting.py配置自己的数据库
python manage.py makemigrations blog
python manage.py migrate
python manage.py runserver
浏览器中打开http://127.0.0.1:8000/即可访问