使用Django快速搭建博客
- Python: 2.X
- Django: 1.10.x
- Mysql
- 博客文章 markdown 渲染,代码高亮
- 三方社会化评论系统支持(畅言)
- 三种皮肤自由切换
- 阅读排行榜/最新评论
- 多目标源博文分享
- 博文归档
- 友情链接
wget https://github.com/jhao104/django-blog/archive/master.zip
or
git clone [email protected]:jhao104/django-blog.git
pip install -r requirements.txt #安装所有依赖
setting.py配置自己的数据库
配置畅言:到https://changyan.kuaizhan.com/注册站点,将templates/message.html中js部分换成你在畅言中生成的js。
python manage.py makemigrations blog
python manage.py migrate
python manage.py runserver
浏览器中打开https://127.0.0.1:8000/即可访问