项目地址: https://github.com/lt94/peach-blog.git
Peach-Blog
开发这个目的就是,方便自己可以在 hexo 搭建的静态博客来回切换
Features
- support export hexo's posts into database
- support export database's posts into hexo-format markdown file
- add new dashboard base on flask-admin
- add markdown support to flask-admin
Screenshots



Usages
environment
pip install -r requirements.txt
init database
before you execute following lines,make sure you have already create database
flask shell
you'are supposed to see, something like follow one:
Python 3.6.5
App: app [development]
Instance: path\to\instance
then
>>> from app import db
>>> db.create_all()
# create super user
>>> from app.models import User
>>> user = User(user_name='your name',password='your password', level=1)
>>> db.session.add(user)
>>> db.session.commit()
export hexo's posts into database
if you want to export hexo posts into database, change the value of config.py on line 14 (where the hexo's posts store),then
flask hexo g
clean the posts,just use flask hexo c simplely
run the server
flask run
export database's posts into hexo-format markdown files
login in peach-blog admin, and step into post list pages, and then (see the picture)

the expoted post will generate under the directory where you set in config.py
About Dev
测试网址: http://132.232.71.126 测试账户: test/test, 没有修改,新增权限
还有命令行导出功能,rss 等功能待开发